Skip to content
Open
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 dcm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dcm() {
BIN=$BIN/dcm-linux-amd64
elif [[ "$OS" == "FreeBSD" ]] && [[ "$ARCH" == "x86_64" ]]; then
BIN=$BIN/dcm-freebsd-amd64
elif [[ "$OS" == "CYGWIN_NT-6.1" ]] && [[ "$ARCH" == "x86_64" ]]; then
elif ([[ "$OS" == "CYGWIN_NT"* ]] || [[ "$OS" == "MINGW"* ]]) && [[ "$ARCH" == "x86_64" ]]; then
BIN=$BIN/dcm-windows-amd64.exe
else
>&2 echo "Sorry, your OS ($OS) and Arch ($ARCH) is not currently supported by DCM." && \
Expand Down