Skip to content

Commit

Permalink
Fixed after comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennenoel committed Apr 15, 2024
1 parent 6097994 commit 10cd90e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions packages/cli/src/managers/shell.manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ export class ShellManager {
const start = new Date();

if(outputTimeBeforeExecutingCommand) {
if(outputStdout) {
this.consoleManager.writeLine(start.toISOString() + " - " + finalCommand);
} else {
this.consoleManager.writeLine(start.toISOString());
}
this.consoleManager.writeLine(start.toISOString() + " - " + finalCommand);
} else {
outputStdout && this.consoleManager.writeLine(finalCommand);
}
Expand Down Expand Up @@ -101,4 +97,4 @@ export class ShellManager {
})
})
}
}
}

0 comments on commit 10cd90e

Please sign in to comment.