Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2016-01-23 14:44:26 +0300
committerKamil Rytarowski <n54@gmx.com>2016-01-23 14:44:26 +0300
commit6be37cfad2d6160bed9304c73810c91ee3094193 (patch)
treefd3b8fd0540289a43e599ba5cd51cee66f670f73 /build.sh
parentd4e0b664660faf432a693794d27c9a57f75d79e5 (diff)
Sort OSName cases in build.sh
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.sh b/build.sh
index 743a2a684..c1fdab912 100755
--- a/build.sh
+++ b/build.sh
@@ -287,10 +287,6 @@ esac
# Use uname to determine what the OS is.
OSName=$(uname -s)
case $OSName in
- Linux)
- __BuildOS=Linux
- ;;
-
Darwin)
__BuildOS=OSX
__ToolNugetRuntimeId=osx.10.10-x64
@@ -303,6 +299,10 @@ case $OSName in
__TestNugetRuntimeId=osx.10.10-x64
;;
+ Linux)
+ __BuildOS=Linux
+ ;;
+
*)
echo "Unsupported OS $OSName detected, configuring as if for Linux"
__BuildOS=Linux