1
0
Fork 0

fixed bug caused by the fact that some linux distro's symlink /bin/openvt to /bin/open

pull/24/head
Alex Light 13 years ago
parent 02e39eaf4f
commit 84ba53a022

@ -80,7 +80,7 @@ if (( $+commands[xdg-open] )); then
export BROWSER='xdg-open' export BROWSER='xdg-open'
fi fi
if (( $+commands[open] )); then if [[ $OSTYPE == darwin && 1 == $+commands[open] ]]; then
export BROWSER='open' export BROWSER='open'
fi fi

Loading…
Cancel
Save