diff options
author | Xy Ziemba <xy.ziemba@gmail.com> | 2015-02-05 11:30:07 -0800 |
---|---|---|
committer | Xy Ziemba <xy.ziemba@gmail.com> | 2015-02-05 11:30:07 -0800 |
commit | 1bdd12dab0db0c37bc3fcecd128d1dd6180d2bfb (patch) | |
tree | 9b83441f60196e54b8892b9556b7e06b730d16b1 /build.sh | |
parent | ef73ad81550c31ebeba9fa8a64a4ce4a4e6844f7 (diff) | |
parent | fff933b36c8d24143c02603329e471697218c635 (diff) | |
download | coreclr-1bdd12dab0db0c37bc3fcecd128d1dd6180d2bfb.tar.gz coreclr-1bdd12dab0db0c37bc3fcecd128d1dd6180d2bfb.tar.bz2 coreclr-1bdd12dab0db0c37bc3fcecd128d1dd6180d2bfb.zip |
Merge pull request #50 from xyziemba/build_fix_1
Make build type and build.sh case insensitive
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -117,7 +117,8 @@ __CleanBuild=false for i in "$@" do - case $i in + lowerI="$(echo $i | awk '{print tolower($0)}')" + case $lowerI in -?|-h|--help) usage exit 1 |