1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 14:00:46 +00:00

added 'linux' as recognised OS for jo

This commit is contained in:
Koen De Jaeger 2014-10-30 11:39:18 +01:00
parent b4cbcc2fd2
commit d6453dffef

View File

@ -93,7 +93,7 @@ jo() {
output="$(autojump ${@})" output="$(autojump ${@})"
if [[ -d "${output}" ]]; then if [[ -d "${output}" ]]; then
case ${OSTYPE} in case ${OSTYPE} in
linux-gnu) linux|linux-gnu)
xdg-open "${output}" xdg-open "${output}"
;; ;;
darwin*) darwin*)
@ -103,7 +103,7 @@ jo() {
cygstart "" $(cygpath -w -a ${output}) cygstart "" $(cygpath -w -a ${output})
;; ;;
*) *)
echo "Unknown operating system." 1>&2 echo "Unknown operating system '${OSTYPE}'." 1>&2
;; ;;
esac esac
else else