Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kvz committed Nov 28, 2024
1 parent fdb6a5c commit b8f45ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ To release, say `3.2.0` [Packagist](https://packagist.org/packages/transloadit/p
1. Make sure you are in main: `git checkout main`
1. Update `CHANGELOG.md` and `composer.json`
1. Commit: `git add CHANGELOG.md composer.json && git commit -m "Release 3.2.0"`
1. Tag, push, and release: `source .env && VERSION=3.2.0 ./release.sh`
1. Tag, push, and release: `source env.sh && VERSION=3.2.0 ./release.sh`
This project implements the [Semantic Versioning](http://semver.org/) guidelines.
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -o nounset
set -o pipefail
# set -o xtrace

if [[ -z "${PACKAGIST_TOKEN}" ]]; then
if [[ -z "${PACKAGIST_TOKEN:-}" ]]; then
echo "PACKAGIST_TOKEN is not set"
exit 1
fi
Expand Down

0 comments on commit b8f45ca

Please sign in to comment.