Merge pull request #1 from palpha/feature/issue-356-support-git-bash-msysgit

Small tweaks to your Git Bash fixes for autojump
pull/433/head
Azriel Hoh 5 years ago committed by GitHub
commit fcd8d6d8ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -112,6 +112,9 @@ jo() {
cygwin)
cygstart "" $(cygpath -w -a ${output})
;;
msys)
start "${output}"
;;
*)
echo "Unknown operating system: ${OSTYPE}." 1>&2
;;

@ -20,7 +20,7 @@ def cp(src, dest, dryrun=False):
def in_bash():
return get_shell() == 'bash'
return get_shell().startswith('bash')
def in_msysgit():

Loading…
Cancel
Save