From 756a719c586c875980d321f96d3604ef1c8c0a55 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 1056075545..4db4f42516 100755 --- a/git-am.sh +++ b/git-am.sh @@ -444,7 +444,7 @@ else first= } case "$arg" in - /*) + /*|?:*) set "$@" "$arg" ;; *) set "$@" "$prefix$arg" ;;