Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Wyand <danwyand@gmail.com>2014-11-25 02:03:31 +0300
committerJunio C Hamano <gitster@pobox.com>2014-11-25 21:06:08 +0300
commit7d665f35849309faaa73cdfbf23210950cd4389d (patch)
tree01bb4963b6b80af6c7f3b9bad634a6a43fcf1d5d /git-sh-setup.sh
parent7fa1365c54c28b3cd9375539f381b54061a1880d (diff)
git-sh-setup.sh: use dashdash with basename call
Calling basename on a argument that starts with a dash, like a login shell, will result in an error. Add '--' before the argument so that the argument is interpreted properly. Signed-off-by: Dan Wyand <danwyand@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-sh-setup.sh')
-rw-r--r--git-sh-setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-sh-setup.sh b/git-sh-setup.sh
index 9447980330..5cdae338b8 100644
--- a/git-sh-setup.sh
+++ b/git-sh-setup.sh
@@ -81,7 +81,7 @@ if test -n "$OPTIONS_SPEC"; then
echo exit $?
)"
else
- dashless=$(basename "$0" | sed -e 's/-/ /')
+ dashless=$(basename -- "$0" | sed -e 's/-/ /')
usage() {
die "usage: $dashless $USAGE"
}