Skip to content

Commit

Permalink
[CI] fix unbound variable issue (elastic#188454)
Browse files Browse the repository at this point in the history
## Summary
Last fix on elastic#188027
  • Loading branch information
delanni authored Jul 16, 2024
1 parent 4043c7d commit 9d43b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .buildkite/scripts/steps/artifacts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if [[ "$BUILDKITE_BRANCH" == "$KIBANA_BASE_BRANCH" ]] || [[ "${DRY_RUN:-}" =~ ^(
download_artifact beats_manifest.json /tmp --build "${KIBANA_BUILD_ID:-$BUILDKITE_BUILD_ID}"
export BEATS_MANIFEST_URL=$(jq -r .manifest_url /tmp/beats_manifest.json)

if [[ "$DRY_RUN" =~ ^(1|true)$ ]]; then
if [[ "${DRY_RUN:-}" =~ ^(1|true)$ ]]; then
docker run --rm \
--name release-manager \
-e VAULT_ADDR \
Expand Down

0 comments on commit 9d43b39

Please sign in to comment.