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:
authorManu <manu-silicon@users.noreply.github.com>2015-12-01 03:33:08 +0300
committerManu <manu-silicon@users.noreply.github.com>2015-12-01 04:29:12 +0300
commitc23873aa1014c37b97d4c288351e648bc5c90bfa (patch)
tree2918684e3a760c6bc79d6556f868b9a54ed76b20 /build.sh
parent924fe3a5d28a2ac32c53a2dac950f17a6fc9cd0f (diff)
Removed -? as possible argument
Not only this is not Unix like to use -? for help but the code was not working since -? was understood as - followed by any characters.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 2066df2f4..6bfa468c8 100755
--- a/build.sh
+++ b/build.sh
@@ -267,7 +267,7 @@ for i in "$@"
do
lowerI="$(echo $i | awk '{print tolower($0)}')"
case $lowerI in
- -?|-h|--help)
+ -h|--help)
usage
exit 1
;;