summaryrefslogtreecommitdiff
path: root/exec_cmd.c
diff options
context:
space:
mode:
authorJohannes Sixt <johannes.sixt@telecom.at>2007-12-03 20:55:57 (GMT)
committerJohannes Sixt <johannes.sixt@telecom.at>2008-06-22 09:32:45 (GMT)
commit80ba074f4163dc8ee4232d64e73a8521edcadc1d (patch)
tree64dde5d4ff19b5475b20519ac2ddefd14492581c /exec_cmd.c
parentf4626df51f63d53b89ff01de54cbf7558217ea2b (diff)
downloadgit-80ba074f4163dc8ee4232d64e73a8521edcadc1d.zip
git-80ba074f4163dc8ee4232d64e73a8521edcadc1d.tar.gz
git-80ba074f4163dc8ee4232d64e73a8521edcadc1d.tar.bz2
Windows: Use the Windows style PATH separator ';'.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'exec_cmd.c')
-rw-r--r--exec_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec_cmd.c b/exec_cmd.c
index e189cac..a1bc4e0 100644
--- a/exec_cmd.c
+++ b/exec_cmd.c
@@ -37,7 +37,7 @@ static void add_path(struct strbuf *out, const char *path)
else
strbuf_addstr(out, make_absolute_path(path));
- strbuf_addch(out, ':');
+ strbuf_addch(out, PATH_SEP);
}
}