Fix opening final URL on MSYS (#91)

This commit is contained in:
Frank Fesevur 2017-06-23 22:49:00 +02:00 committed by Paul Irish
parent daa19636c6
commit 3be1c00f36

View file

@ -86,8 +86,8 @@ fi
case $( uname -s ) in
Darwin) open='open';;
MINGW*) open='start';;
MSYS*) open='start';;
CYGWIN*) open='cygstart';;
MSYS*) open='powershell.exe NoProfile Start';;
*) open='xdg-open';;
esac