Skip to content

Commit b8f45ca

Browse files
committed
Fixes
1 parent fdb6a5c commit b8f45ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ To release, say `3.2.0` [Packagist](https://packagist.org/packages/transloadit/p
491491
1. Make sure you are in main: `git checkout main`
492492
1. Update `CHANGELOG.md` and `composer.json`
493493
1. Commit: `git add CHANGELOG.md composer.json && git commit -m "Release 3.2.0"`
494-
1. Tag, push, and release: `source .env && VERSION=3.2.0 ./release.sh`
494+
1. Tag, push, and release: `source env.sh && VERSION=3.2.0 ./release.sh`
495495
496496
This project implements the [Semantic Versioning](http://semver.org/) guidelines.
497497

release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -o nounset
55
set -o pipefail
66
# set -o xtrace
77

8-
if [[ -z "${PACKAGIST_TOKEN}" ]]; then
8+
if [[ -z "${PACKAGIST_TOKEN:-}" ]]; then
99
echo "PACKAGIST_TOKEN is not set"
1010
exit 1
1111
fi

0 commit comments

Comments
 (0)