aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Yue Gan <yueg@google.com>2017-02-20 12:15:21 +0000
committerGravatar Irina Iancu <elenairina@google.com>2017-02-20 12:23:04 +0000
commitcdbf1db4909f3cd9c40b319719428b93aa0ce1c9 (patch)
tree33b6746fe28526a891cfbb92709e08be95319f44 /scripts
parentdf0a5f39ee8bff639757b8501fa261a9327188e1 (diff)
Fixes a variable mistake.
-- PiperOrigin-RevId: 148010735 MOS_MIGRATED_REVID=148010735
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ci/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh
index 641a4468e0..c2ca0e2b81 100755
--- a/scripts/ci/build.sh
+++ b/scripts/ci/build.sh
@@ -527,7 +527,7 @@ function push_benchmark_output_to_site() {
local filename="$1"
local bucket="$2"
- if [ ! -f "${site}"] || [ -z "${bucket}" ]; then
+ if [ ! -f "${filename}"] || [ -z "${bucket}" ]; then
echo "Usage: push_benchmark_output_to_site <json-file-name> <bucket>" >&2
return 1
fi