Fixed VsDevCmd command line quoting (#11554)

(cherry picked from commit 5cd9663269)
This commit is contained in:
Leonard Hecker 2021-10-20 21:57:55 +02:00
parent 89674ac4fb
commit 39b72f78c3

View file

@ -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)");