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.
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