From 4356c9c765982a61cfe23018da57c12418c2d90e Mon Sep 17 00:00:00 2001 From: Tim Condon <0xTim@users.noreply.github.com> Date: Thu, 16 Jun 2022 16:43:03 +0100 Subject: [PATCH] Fix missing space in new message --- Sources/VaporToolbox/New/New.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/VaporToolbox/New/New.swift b/Sources/VaporToolbox/New/New.swift index c43a9414..b1997879 100644 --- a/Sources/VaporToolbox/New/New.swift +++ b/Sources/VaporToolbox/New/New.swift @@ -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) } }