git-p4 submit: Fix missing quotes around p4 commands to make them work with spaces in filenames
[gitweb.git] / contrib / fast-import / git-p4
index 6c199296d39869aae435e95590b776c6ded705a1..21f9ba7e07e8eb577c9ef722fd30f7f30ce9f652 100755 (executable)
@@ -391,10 +391,10 @@ class P4Submit(Command):
         system(applyPatchCmd)
 
         for f in filesToAdd:
-            system("p4 add %s" % f)
+            system("p4 add \"%s\"" % f)
         for f in filesToDelete:
-            system("p4 revert %s" % f)
-            system("p4 delete %s" % f)
+            system("p4 revert \"%s\"" % f)
+            system("p4 delete \"%s\"" % f)
 
         logMessage = ""
         if not self.directSubmit: