Skip to content

Commit

Permalink
Disable build tool spinner in CI env
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
  • Loading branch information
t1m0thyj committed Feb 18, 2025
1 parent 74bdb0d commit 6b8c925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/buildTools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ let SPINNER_INDEX = 0;
const SPINNER_FRAMES = ["-", "\\", "|", "/"];

function startSpinner(text = "Loading...") {
if (DEBUG_MODE()) {
if (DEBUG_MODE() || process.env.CI != null) {
console.log(text);
return null;
}
Expand Down

0 comments on commit 6b8c925

Please sign in to comment.