Skip to content

Commit

Permalink
Escape env vars in Jenkinsfile (#1651)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-kow authored Aug 28, 2019
1 parent cd55069 commit ac13247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/ci/nightly/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ EOF
export LATEST_RELEASED_IMG=docker.elastic.co/${REPOSITORY}/${IMG_NAME}:\$VERSION
echo \$LATEST_RELEASED_IMG > eck_image.txt
cat >> .env <<EOF
OPERATOR_IMAGE = "$OPERATOR_IMAGE"
LATEST_RELEASED_IMG = "$LATEST_RELEASED_IMG"
OPERATOR_IMAGE = "\$OPERATOR_IMAGE"
LATEST_RELEASED_IMG = "\$LATEST_RELEASED_IMG"
EOF
make -C build/ci get-elastic-public-key TARGET=ci-release ci
"""
Expand Down

0 comments on commit ac13247

Please sign in to comment.