Cross Forests
/
projects
/
python
/
fast-export.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b595271
)
git-p4 submit: Fix missing quotes around p4 commands to make them work with spaces...
author
Simon Hausmann
<simon@lst.de>
Mon, 11 Jun 2007 21:40:25 +0000
(23:40 +0200)
committer
Simon Hausmann
<simon@lst.de>
Mon, 11 Jun 2007 21:41:41 +0000
(23:41 +0200)
Noticed by Alex Riesen
git-p4
patch
|
blob
|
history
diff --git
a/git-p4
b/git-p4
index
6c19929
..
21f9ba7
100755
(executable)
--- a/
git-p4
+++ b/
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: