Index: git_cl.py |
=================================================================== |
--- git_cl.py (revision 142106) |
+++ git_cl.py (working copy) |
@@ -1145,8 +1145,8 @@ |
# When submodules are added to the repo, we expect there to be a single |
# non-git-svn merge commit at remote HEAD with a signature comment. |
pattern = '^SVN changes up to revision [0-9]*$' |
- cmd = ['rev-list', '--merges', '--grep="%s"' % pattern, '%s^!' % ref] |
- return RunGit(cmd) != '' |
+ cmd = ['rev-list', '--merges', '--grep', pattern, '%s^!' % ref] |
+ return RunGit(cmd, shell=False) != '' |
M-A Ruel
2012/06/15 18:26:58
Interesting, I sent a CL recently related to that,
|
def SendUpstream(parser, args, cmd): |