diff options
author | Marius Storm-Olsen <mstormo_git@storm-olsen.com> | 2007-06-12 15:27:52 +0200 |
---|---|---|
committer | Marius Storm-Olsen <mstormo_git@storm-olsen.com> | 2007-06-12 15:27:52 +0200 |
commit | cbae7080a7fe0586255e85e1d14f1011260e8eee (patch) | |
tree | 3a59eab5cc35736c31843dd7515c0e33a8e26655 | |
parent | d7e3868cdfdc73c3de15296ecf32138a8308c07e (diff) | |
download | git-cbae7080a7fe0586255e85e1d14f1011260e8eee.tar.gz git-cbae7080a7fe0586255e85e1d14f1011260e8eee.tar.xz |
Only use double quotes on Windows
Signed-off-by: Marius Storm-Olsen <mstormo_git@storm-olsen.com>
-rwxr-xr-x | contrib/fast-import/git-p4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 1168704be..b3f27fe90 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -180,7 +180,7 @@ def findUpstreamBranchPoint(): parent = parent + 1 continue - names = read_pipe_lines("git name-rev '--refs=refs/remotes/p4/*' '%s'" % commit) + names = read_pipe_lines("git name-rev \"--refs=refs/remotes/p4/*\" \"%s\"" % commit) if len(names) <= 0: continue |