Skip to content

Commit

Permalink
fix: add a missing newline to the clean command (#5611)
Browse files Browse the repository at this point in the history
  • Loading branch information
suchorski authored and rigor789 committed Dec 2, 2021
1 parent cca425e commit 46c396d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commands/clean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class CleanCommand implements ICommand {

public async execute(args: string[]): Promise<void> {
const spinner = this.$terminalSpinnerService.createSpinner();
spinner.start("Cleaning project...");
spinner.start("Cleaning project...\n");

const pathsToClean = [
constants.HOOKS_DIR_NAME,
Expand Down

0 comments on commit 46c396d

Please sign in to comment.