diff --git a/.github/workflows/stats.yml b/.github/workflows/stats.yml index 0b3f7f6..534b198 100644 --- a/.github/workflows/stats.yml +++ b/.github/workflows/stats.yml @@ -18,7 +18,7 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} ACCESS_TOKEN: ${{secrets.ACCESS_TOKEN}} GITHUB_owner: ${{github.repository_owner}} - FORCE_COLOR: 3 + FORCE_COLOR: true defaults: run: diff --git a/src/utils.js b/src/utils.js index 5a593c0..f70342a 100644 --- a/src/utils.js +++ b/src/utils.js @@ -54,7 +54,7 @@ export function stopSpinnerAndTimer() { clearInterval(spinnerInterval); clearInterval(timerId); const totalTime = Date.now() - startTime; - process.stdout.write(`\r✅ GitHub Statistics (${color.blink(formatTime(totalTime))})\n\x1b[?25h`); + process.stdout.write(`\r✅ GitHub Statistics (${color.blink(formatTime(totalTime))})\n\x1b[?25h\n`); } // ----------------------------------------------------------------------- export function arrayBufferToAsciiString(arrayBuffer) {