Skip to content

Commit

Permalink
add space
Browse files Browse the repository at this point in the history
  • Loading branch information
ermalkaleci committed May 30, 2024
1 parent 8c0b7de commit 1e0e399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/chopsticks/src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const clearStatus = _.debounce(() => process.stdout.clearLine(1), 500, { trailin
export const statusFetching = () => {
if (!process.stdout.clearLine) return
if (process.env['CI'] || process.env['VITEST'] || process.env['TEST']) return
process.stdout.write(spinnerFrames[index++] + ' Fetching')
process.stdout.write(` ${spinnerFrames[index++]} Fetching`)
process.stdout.cursorTo(0)
index = ++index % spinnerFrames.length
clearStatus()
Expand Down

0 comments on commit 1e0e399

Please sign in to comment.