aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-10-31 13:15:25 -0700
committerJunio C Hamano <gitster@pobox.com>2016-10-31 13:15:25 -0700
commitda14d73d5eacfb2fa9d054f94d9eecb2244c3ce5 (patch)
tree335b43de319820db9747fdf2b5629f7f0b7aeeea
parent2f445c17e59bb1fa49ad9197a4155f878f50d5f5 (diff)
parent1073094f30a8dd5ae49f2146f587085c4fe86410 (diff)
downloadgit-da14d73d5eacfb2fa9d054f94d9eecb2244c3ce5.tar.gz
git-da14d73d5eacfb2fa9d054f94d9eecb2244c3ce5.tar.xz
Merge branch 'ak/sh-setup-dot-source-i18n-fix'
Recent update to git-sh-setup (a library of shell functions that are used by our in-tree scripted Porcelain commands) included another shell library git-sh-i18n without specifying where it is, relying on the $PATH. This has been fixed to be more explicit by prefixing $(git --exec-path) output in front. * ak/sh-setup-dot-source-i18n-fix: git-sh-setup: be explicit where to dot-source git-sh-i18n from.
-rw-r--r--git-sh-setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/git-sh-setup.sh b/git-sh-setup.sh
index a8a457634..240c7ebcd 100644
--- a/git-sh-setup.sh
+++ b/git-sh-setup.sh
@@ -2,9 +2,6 @@
# to set up some variables pointing at the normal git directories and
# a few helper shell functions.
-# Source git-sh-i18n for gettext support.
-. git-sh-i18n
-
# Having this variable in your environment would break scripts because
# you would cause "cd" to be taken to unexpected places. If you
# like CDPATH, define it for your interactive shell sessions without
@@ -46,6 +43,9 @@ git_broken_path_fix () {
# @@BROKEN_PATH_FIX@@
+# Source git-sh-i18n for gettext support.
+. "$(git --exec-path)/git-sh-i18n"
+
die () {
die_with_status 1 "$@"
}