Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installer/build-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ cd ..

grep -q "darwin" <<< $OSTYPE && export OS="mac" || :
# All windows platforms can be enumerated below
[ $OSTYPE == "msys" ] && export OS="win32" || :
[[ $OSTYPE == "msys" || $OSTYPE == "cygwin" ]] && export OS="win32" || :
[ $OSTYPE == "linux-gnu" ] && OS_EXT=$OS`getconf LONG_BIT` || OS_EXT=$OS

if [ $OS == "win32" ] ; then
Expand Down
Loading