Skip to content
This repository has been archived by the owner on Mar 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #164 from SaschaMann/patch-1
Browse files Browse the repository at this point in the history
scripts: Add MSYS_NT-* => Windows OS selection
  • Loading branch information
Katrina Owen authored Aug 8, 2019
2 parents 3e22c9f + c1f0ff0 commit b574418
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions scripts/fetch-configlet
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ get_version () {
}

case "$(uname)" in
(Darwin*) OS='mac' ;;
(Linux*) OS='linux' ;;
(Windows*) OS='windows' ;;
(MINGW*) OS='windows' ;;
(*) OS='linux' ;;
(Darwin*) OS='mac' ;;
(Linux*) OS='linux' ;;
(Windows*) OS='windows' ;;
(MINGW*) OS='windows' ;;
(MSYS_NT-*) OS='windows' ;;
(*) OS='linux' ;;
esac

case "$OS" in
Expand Down

0 comments on commit b574418

Please sign in to comment.