summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorAnders Wenhaug <anders@wenhaug.no>2015-02-04 19:41:24 +0100
committerAnders Wenhaug <anders@wenhaug.no>2015-02-04 19:41:24 +0100
commit61d741da5b013d3adc4629357659c508c4649c1a (patch)
treedf7f39f08753720e6c9352c1f62c0a0ef48bb80c /build.sh
parentfdd9e11d90aae37fd5d7e7492756c23145b13b24 (diff)
downloadcoreclr-61d741da5b013d3adc4629357659c508c4649c1a.tar.gz
coreclr-61d741da5b013d3adc4629357659c508c4649c1a.tar.bz2
coreclr-61d741da5b013d3adc4629357659c508c4649c1a.zip
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.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index 25ee783280..2fc0a634c3 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