From 0adba915479345ef7bb8eed486c7874372a2d00c Mon Sep 17 00:00:00 2001 From: "Kevin H. Luu" Date: Sat, 5 Apr 2025 03:36:01 -0700 Subject: [PATCH] [CI] Fix benchmark script level (#16089) --- .buildkite/scripts/run-benchmarks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/scripts/run-benchmarks.sh b/.buildkite/scripts/run-benchmarks.sh index 1641c1faa9d6a..195a8063fd743 100644 --- a/.buildkite/scripts/run-benchmarks.sh +++ b/.buildkite/scripts/run-benchmarks.sh @@ -5,8 +5,8 @@ set -ex set -o pipefail -# cd into parent directory of this file -cd "$(dirname "${BASH_SOURCE[0]}")/.." +# cd 2 levels into the working directory +cd "$(dirname "${BASH_SOURCE[0]}")/../.." (which wget && which curl) || (apt-get update && apt-get install -y wget curl)