Skip to content

Commit

Permalink
ensure no color in output
Browse files Browse the repository at this point in the history
  • Loading branch information
RomainMuller committed Jul 26, 2023
1 parent 17371dd commit 97a2adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jsii-calc/bin/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const runCommand = async () => {

if (args.includes('delay')) {
for (let i = 1; i <= 5; i++) {
console.log('sleeping 1s', i);
console.log(`sleeping 1s ${i}`);
// eslint-disable-next-line no-await-in-loop
await delay(1000);
}
Expand Down

0 comments on commit 97a2adb

Please sign in to comment.