From 502bacea82a59e7f2275d4e1b6d00c667ad503b5 Mon Sep 17 00:00:00 2001 From: gabriel klawitter Date: Tue, 4 Sep 2018 10:58:13 +0200 Subject: [PATCH] fix typo in bash script (#9462) --- scripts/gitlab/push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gitlab/push.sh b/scripts/gitlab/push.sh index 718f291fe..15e7667e5 100755 --- a/scripts/gitlab/push.sh +++ b/scripts/gitlab/push.sh @@ -52,7 +52,7 @@ DESCRIPTION="$(echo "${DESCRIPTION/${REPLACE_TEXT}/${RELEASE_TABLE} ${REPLACE_TEXT}}")" echo "$DESCRIPTION" -if [["$CI_COMMIT_REF_NAME" == "nightly" ]]; then DESCRIPTION=""; fi #TODO in the future, we need to prepare a script that will do changelog +if [[ "$CI_COMMIT_REF_NAME" == "nightly" ]]; then DESCRIPTION=""; fi #TODO in the future, we need to prepare a script that will do changelog echo "__________Create release to Github____________" github-release release --user devops-parity --repo parity-ethereum --tag "$CI_COMMIT_REF_NAME" --draft --name "$NAME" --description "$DESCRIPTION" echo "__________Push binaries to AWS S3____________"