Skip to content

Commit

Permalink
Fix missing space in new message
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTim authored Jun 16, 2022
1 parent 42cf362 commit 4356c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/VaporToolbox/New/New.swift
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct New: AnyCommand {
"Project " + name.consoleText(.info) + " has been created!",
"",
"Use " + "cd \(Process.shell.escapeshellarg(cdInstruction))".consoleText(.info) + " to enter the project directory",
"Then open your project, for example if using Xcode type " + "open Package.swift".consoleText(.info) + "or " + "code .".consoleText(.info) + " if using VSCode",
"Then open your project, for example if using Xcode type " + "open Package.swift".consoleText(.info) + " or " + "code .".consoleText(.info) + " if using VSCode",
]).forEach { context.console.output($0) }
}

Expand Down

0 comments on commit 4356c9c

Please sign in to comment.