From 0a79f1e836d6096ec67deabca8105f60b124cbbe Mon Sep 17 00:00:00 2001 From: Mark Ingalls Date: Mon, 9 Nov 2015 14:34:47 -0700 Subject: [PATCH] make this work in the git-for-windows SDK Added an option for the msys value of $OSTYPE --- lib/functions.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/functions.zsh b/lib/functions.zsh index ec6f3721..1623df2b 100644 --- a/lib/functions.zsh +++ b/lib/functions.zsh @@ -23,6 +23,7 @@ function open_command() { darwin*) open_cmd="open" ;; cygwin*) open_cmd="cygstart" ;; linux*) open_cmd="xdg-open" ;; + msys*) open_cmd="start" ;; *) echo "Platform $OSTYPE not supported" return 1 ;;