aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar dslomov <dslomov@google.com>2017-05-15 23:48:26 +0200
committerGravatar Dmitry Lomov <dslomov@google.com>2017-05-15 23:50:52 +0200
commit39f328cf392056618d1a3ead4835a138b189a06d (patch)
treefcea3026fc45b0ff781ca0a0f31b48ca29ccdfda
parenteb565f408e03125e92d42b00756e519795be6593 (diff)
Fix typo. Also do not override host_cpu for msvc.
RELNOTES: None. PiperOrigin-RevId: 156107235
-rwxr-xr-xscripts/ci/windows/compile_windows.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ci/windows/compile_windows.sh b/scripts/ci/windows/compile_windows.sh
index 4cafcb7545..8eba3b81fa 100755
--- a/scripts/ci/windows/compile_windows.sh
+++ b/scripts/ci/windows/compile_windows.sh
@@ -38,10 +38,10 @@ if [ -n "${release_label}" ]; then
fi
# On windows-msvc-x86_64, we build a MSVC Bazel
-OPTS="--cpu=x64_windown_msys --host_cpu=x64_windows_msys"
+OPTS="--cpu=x64_windows_msys --host_cpu=x64_windows_msys"
MSVC_LABEL=""
if [[ $PLATFORM_NAME == windows-msvc-x86_64* ]]; then
- OPTS="--cpu=x64_windows_msvc --host_cpu=x64_windows_msvc --copt=/w"
+ OPTS="--cpu=x64_windows_msvc --copt=/w"
MSVC_LABEL="-msvc"
fi