From 61d741da5b013d3adc4629357659c508c4649c1a Mon Sep 17 00:00:00 2001 From: Anders Wenhaug Date: Wed, 4 Feb 2015 19:41:24 +0100 Subject: [PATCH] Update usage text to show correct arguments. The usage text printed the arguments with a capital letter, whilst the script looked for the same arguments but without the leading capital letter. Also reordered the argument help list so it is in the same order as the script accepts them. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 25ee78328080..2fc0a634c303 100755 --- a/build.sh +++ b/build.sh @@ -3,8 +3,8 @@ usage() { echo "Usage: $0 [BuildArch] [BuildType] [clean]" - echo "BuildType can be: Debug, Release" - echo "BuildArch can be: Amd64" + echo "BuildArch can be: amd64" + echo "BuildType can be: debug, release" echo "clean - optional argument to force a clean build." exit 1