Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'maint' to sync with Git 1.7.3.3
[gitweb.git]
/
git-am.sh
diff --git
a/git-am.sh
b/git-am.sh
index de116a29ef091a23f60603a28f1260ba60f054ac..df09b42840b7675e135605f9108894ce93e6d477 100755
(executable)
--- a/
git-am.sh
+++ b/
git-am.sh
@@
-444,12
+444,12
@@
else
set x
first=
}
- case "$arg" in
- /*)
- set "$@" "$arg"
;;
- *)
- set "$@" "$prefix$arg"
;;
- esac
+ if is_absolute_path "$arg"
+ then
+ set "$@" "$arg"
+ else
+ set "$@" "$prefix$arg"
+ fi
done
shift
fi