فهرست منبع

When cd-jing into directory, if directory has space, it should put quotes around. I guess we could just put quotes around all the time

Andy Cedilnik 23 سال پیش
والد
کامیت
a4b04375d2
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      Source/cmSystemTools.cxx

+ 2 - 2
Source/cmSystemTools.cxx

@@ -1470,9 +1470,9 @@ bool RunCommandViaPopen(const char* command,
   std::string commandInDir;
   if(dir)
     {
-    commandInDir = "cd ";
+    commandInDir = "cd \"";
     commandInDir += dir;
-    commandInDir += " && ";
+    commandInDir += "\" && ";
     commandInDir += command;
     }
   else