Skip to content

Commit

Permalink
Use "x64" and not "amd64" in build.sh
Browse files Browse the repository at this point in the history
The help text for build.sh said that you should pass "x64" as a
paramter for the build architecture.  However, the script was looking
for amd64.  Update the script to look for x64 since that's what we use
everywhere else (and the behavior you got if you didn't pass an
argument to this script.)

Fixes #689
  • Loading branch information
ellismg committed Apr 15, 2015
1 parent 7a94cd1 commit 44e3523
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ echo "Commencing CoreCLR Repo build"

# Argument types supported by this script:
#
# Build architecture - valid value is: Amd64.
# Build architecture - valid value is: x64.
# Build Type - valid values are: Debug, Release
#
# Set the default arguments for build
Expand Down Expand Up @@ -138,7 +138,7 @@ for i in "$@"
usage
exit 1
;;
amd64)
x64)
__BuildArch=x64
__MSBuildBuildArch=x64
;;
Expand Down

0 comments on commit 44e3523

Please sign in to comment.