From 7ec8eae2e7ecd128bf9c9d6a18bebe109b92c06e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Fri, 1 Apr 2016 19:51:50 +0800 Subject: [PATCH] fixed release readme and bumper script --- scripts/README.md | 2 +- scripts/bump-versions.sh | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/scripts/README.md b/scripts/README.md index fe006cd0..1f3eae98 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -3,6 +3,6 @@ The release process works roughly like this: ``` bash ./scripts/bump-versions.sh git commit -./scripts/upload.sh +./scripts/upload.hs git tag && git push --tags ``` diff --git a/scripts/bump-versions.sh b/scripts/bump-versions.sh index 2e39cea3..751f0d77 100755 --- a/scripts/bump-versions.sh +++ b/scripts/bump-versions.sh @@ -56,10 +56,7 @@ done if $DRY_RUN ; then echo "Would have bumped position ${POSITION} on these packages:" - ( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , "${SOURCES[@]}") ) + ( cd "$ROOT" && bumper --dry-run -"$POSITION" $(join , $SOURCES) ) else - ( cd "$ROOT" && bumper -"$POSITION" $(join , "${SOURCES[@]}") ) + ( cd "$ROOT" && bumper -"$POSITION" $(join , $SOURCES) ) fi - -# Trailing newline, bumper does not ship with its own. -echo