From f0b93d438b4a02dd6d8554decbd4842feb60b90d Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 7 Apr 2010 23:14:00 +0200 Subject: [PATCH] git-am: fix absolute path logic on Windows This fixes t4150 on msysGit. Signed-off-by: Johannes Schindelin --- git-am.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-am.sh b/git-am.sh index 87ffae252b..6722386cfd 100755 --- a/git-am.sh +++ b/git-am.sh @@ -444,7 +444,7 @@ else first= } case "$arg" in - /*) + /*|?:*) set "$@" "$arg" ;; *) set "$@" "$prefix$arg" ;;