mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
[mv3] Fix Github Actions
This commit is contained in:
parent
e11335f5ad
commit
b5eea3ce3a
1 changed files with 3 additions and 3 deletions
|
|
@ -105,9 +105,9 @@ const log = (text, silent = true) => {
|
||||||
console.log = log;
|
console.log = log;
|
||||||
|
|
||||||
const logProgress = text => {
|
const logProgress = text => {
|
||||||
process?.stdout?.clearLine();
|
process?.stdout?.clearLine?.();
|
||||||
process?.stdout?.cursorTo(0);
|
process?.stdout?.cursorTo?.(0);
|
||||||
process?.stdout?.write(text);
|
process?.stdout?.write?.(text);
|
||||||
};
|
};
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue