aboutsummaryrefslogtreecommitdiffstats
path: root/git-checkout-script
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 11:14:47 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 11:14:47 -0700
commitdc14841102bb364c2be200e8456146fc8df970b9 (patch)
tree184eafb56d4b768a81db12890005fbf7e6a4a874 /git-checkout-script
parente8b11749f031428f743c1e01a6934f6ff34cec16 (diff)
downloadgit-dc14841102bb364c2be200e8456146fc8df970b9.tar.gz
git checkout: fix default head case
The "${new=$old}" syntax only works for an undefined 'new', not for an empty one. I knew that. Really. I'm not stupid.
Diffstat (limited to 'git-checkout-script')
-rwxr-xr-xgit-checkout-script2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-checkout-script b/git-checkout-script
index a3bfae79db..5b49662e62 100755
--- a/git-checkout-script
+++ b/git-checkout-script
@@ -29,7 +29,7 @@ while [ "$#" != "0" ]; do
esac
i=$(($i+1))
done
-: ${new=$old}
+[ -z "$new" ] && new=$old
if [ "$force" ]
then