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