Skip to content

Commit

Permalink
Fixed VsDevCmd command line quoting (#11554)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5cd9663)
  • Loading branch information
lhecker committed Oct 20, 2021
1 parent 89674ac commit 39b72f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cascadia/TerminalSettingsModel/VsDevCmdGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)");
Expand Down

0 comments on commit 39b72f7

Please sign in to comment.