fixed release readme and bumper script

This commit is contained in:
Sönke Hahn 2016-04-01 19:51:50 +08:00
parent b72c271c2c
commit 7ec8eae2e7
2 changed files with 3 additions and 6 deletions

View File

@ -3,6 +3,6 @@ The release process works roughly like this:
``` bash
./scripts/bump-versions.sh <type-of-bump>
git commit
./scripts/upload.sh <hackage-usr> <hackage-pwd>
./scripts/upload.hs
git tag <version> && git push --tags
```

View File

@ -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