From 2cd00aa826ea8ac67da6006d16dac496773e7652 Mon Sep 17 00:00:00 2001 From: Will Winder Date: Tue, 18 Jun 2019 16:24:21 -0400 Subject: [PATCH] Fix copy/paste error in promote_stable script. --- scripts/promote_stable.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/promote_stable.sh b/scripts/promote_stable.sh index bacaf26814..2c82e794ad 100755 --- a/scripts/promote_stable.sh +++ b/scripts/promote_stable.sh @@ -39,5 +39,5 @@ CHANNEL="stable" ${S3CMD} ls s3://${S3_UPLOAD_BUCKET}/pending_ | grep _${CHANNEL}[_-] | awk '{ print $4 }' | while read line; do NEW_ARTIFACT_NAME=$(echo "$line" | sed -e 's/pending_//') echo "Rename ${line} => ${NEW_ARTIFACT_NAME}" - ${S3CMD} mv ${line} ${RENAMED} + ${S3CMD} mv ${line} ${NEW_ARTIFACT_NAME} done