diff options
author | Will Harris <wfh@chromium.org> | 2015-08-19 12:34:19 -0700 |
---|---|---|
committer | Will Harris <wfh@chromium.org> | 2015-08-19 19:41:41 +0000 |
commit | e9c09777c913001bfb1a4a65b841ccff39de690d (patch) | |
tree | cb1275eeb888341a88b304041974caddfbb00556 /tools/win | |
parent | 9c33158ca8cae4ad4e62e09d77ea2990a9945c0c (diff) | |
download | chromium_src-e9c09777c913001bfb1a4a65b841ccff39de690d.zip chromium_src-e9c09777c913001bfb1a4a65b841ccff39de690d.tar.gz chromium_src-e9c09777c913001bfb1a4a65b841ccff39de690d.tar.bz2 |
Fix typo in copy-installer.bat
This bug made it impossible to manually specify x64
BUG=None
TBR=grt@chromium.org
Review URL: https://codereview.chromium.org/1300123003 .
Cr-Commit-Position: refs/heads/master@{#344306}
Diffstat (limited to 'tools/win')
-rwxr-xr-x | tools/win/copy-installer.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/win/copy-installer.bat b/tools/win/copy-installer.bat index 7ccc5a7..7b9faac 100755 --- a/tools/win/copy-installer.bat +++ b/tools/win/copy-installer.bat @@ -37,7 +37,7 @@ IF "%%a"=="out" SET OUTPUT=out IF "%%a"=="build" SET OUTPUT=build
IF "%%a"=="Debug" SET BUILDTYPE=Debug
IF "%%a"=="Release" SET BUILDTYPE=Release
-IF "%%s"=="x64" SET ARCH=_x64
+IF "%%a"=="x64" SET ARCH=_x64
)
CALL :_find_build
|