[mv3] Fix Github Actions

This commit is contained in:
Raymond Hill 2025-04-13 15:45:39 -04:00
parent e11335f5ad
commit b5eea3ce3a
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -105,9 +105,9 @@ const log = (text, silent = true) => {
console.log = log;
const logProgress = text => {
process?.stdout?.clearLine();
process?.stdout?.cursorTo(0);
process?.stdout?.write(text);
process?.stdout?.clearLine?.();
process?.stdout?.cursorTo?.(0);
process?.stdout?.write?.(text);
};
/******************************************************************************/