This commit is contained in:
igleyy 2015-07-29 19:51:48 +00:00
commit bebb26208d

View file

@ -14,6 +14,8 @@ open_jira_issue () {
local open_cmd local open_cmd
if [[ "$OSTYPE" = darwin* ]]; then if [[ "$OSTYPE" = darwin* ]]; then
open_cmd='open' open_cmd='open'
elif [[ "$OSTYPE" = cygwin ]]; then
open_cmd='cygstart'
else else
open_cmd='xdg-open' open_cmd='xdg-open'
fi fi