diff options
author | murgatroid99 <mlumish@google.com> | 2016-04-29 12:55:28 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-04-29 12:55:28 -0700 |
commit | 8cb5f2f413853829f75bc256ee93fec812d357a1 (patch) | |
tree | 43e6222882b6135f31a0c25e6a4513c7b4903266 /tools/run_tests | |
parent | f897fec0dbd8814b3717b88058cdcaf6965a2d50 (diff) |
Fixed build_package_ruby's use of variables
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-x | tools/run_tests/build_package_ruby.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/build_package_ruby.sh b/tools/run_tests/build_package_ruby.sh index 5725a19e62..e44428bf7e 100755 --- a/tools/run_tests/build_package_ruby.sh +++ b/tools/run_tests/build_package_ruby.sh @@ -45,7 +45,7 @@ cp -r $EXTERNAL_GIT_ROOT/architecture={x86,x64},language=ruby,platform={windows, # in the artifacts/ directory. They should be all equivalent though. for arch in {x86,x64}; do - case arch in + case $arch in x64) ruby_arch=x86_64 ;; |