Jelajahi Sumber

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 tahun lalu
induk
melakukan
a4b04375d2
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  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