From 39b72f78c3d10d0ef1d745608e67f69c28adfe6d Mon Sep 17 00:00:00 2001 From: Leonard Hecker Date: Wed, 20 Oct 2021 21:57:55 +0200 Subject: [PATCH] Fixed VsDevCmd command line quoting (#11554) (cherry picked from commit 5cd966326913298f9d5570717a94972728f63065) --- src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp b/src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp index 39ee490ce77..e00f9f3841f 100644 --- a/src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp +++ b/src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp @@ -40,7 +40,7 @@ std::wstring VsDevCmdGenerator::GetProfileCommandLine(const VsSetupConfiguration { std::wstring commandLine; commandLine.reserve(256); - commandLine.append(LR"("cmd.exe /k ")"); + commandLine.append(LR"(cmd.exe /k ")"); commandLine.append(GetDevCmdScriptPath(instance)); #if defined(_M_ARM64) commandLine.append(LR"(" -arch=arm64 -host_arch=x64)");