Skip to content

Commit 605e133

Browse files
committed
fix curl
1 parent f7f2b07 commit 605e133

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.buildkite/scripts/run-bc-upgrade-tests.sh

100644100755
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
set -euo pipefail
1313

14+
echo "Selecting the most recent build from branch [$BUILDKITE_BRANCH]."
15+
1416
# Select the most recent build from the current branch.
1517
# We collect snapshots, order by date, then collect BCs, order by date, and concat them; then we select the last.
1618
# So if we have one (or more) BC, we will always prefer to use that. Otherwise we will use the latest snapshot.
@@ -28,7 +30,9 @@ if [[ -z "$MANIFEST_URL" ]]; then
2830
exit 0
2931
fi
3032

31-
MANIFEST="$(curl -s "$MANIFEST_URL")"
33+
echo "Getting build manifest from [$MANIFEST_URL]"
34+
35+
MANIFEST="$(eval "curl -s $MANIFEST_URL")"
3236
if [[ -z "$MANIFEST" ]]; then
3337
echo "Cannot get the build manifest from [$MANIFEST_URL]"
3438
exit 1

0 commit comments

Comments
 (0)