diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-01-23 19:01:32 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-23 19:01:32 -0800 |
commit | e2355a3e061eb7c9583a992f677867deb97fd598 (patch) | |
tree | c14a48c9afc4b5fa78c394704092c15b8d0044d6 | |
parent | 9e3248eb51ae6e376a4128846efe598f7fd6912f (diff) | |
parent | 22b3ddd508b022c76bf36bf390691a6f62c996d5 (diff) | |
download | git-e2355a3e061eb7c9583a992f677867deb97fd598.tar.gz |
Merge branch 'js/maint-bisect-gitk' into maint
* js/maint-bisect-gitk:
bisect view: call gitk if Cygwin's SESSIONNAME variable is set
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 17a35f6adc..85db4ba400 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -508,7 +508,7 @@ bisect_visualize() { if test $# = 0 then - case "${DISPLAY+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" in + case "${DISPLAY+set}${SESSIONNAME+set}${MSYSTEM+set}${SECURITYSESSIONID+set}" in '') set git log ;; set*) set gitk ;; esac |