From: Simon Hausmann Date: Mon, 11 Jun 2007 21:40:25 +0000 (+0200) Subject: git-p4 submit: Fix missing quotes around p4 commands to make them work with spaces... X-Git-Tag: v1.5.3-rc0~65^2^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e6b711f00e4578eb4b2127af12f73a5fa438f948;p=git.git git-p4 submit: Fix missing quotes around p4 commands to make them work with spaces in filenames Noticed by Alex Riesen Signed-off-by: Simon Hausmann --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 6c199296d..21f9ba7e0 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -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: