Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.

Commit

Permalink
make-release: fix module version string
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Gelf committed Sep 12, 2019
1 parent c699cdf commit 61986dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/make-release.sh
Expand Up @@ -36,7 +36,7 @@ find vendor/ -type f -name "*.php" \
| xargs -L1 git add -f
find vendor/ -type f -name LICENSE | xargs -L1 git add -f
find vendor/ -type f -name '*.json' | xargs -L1 git add -f
sed -i.bak "s/^Version:.*/Version: v$VERSION/" module.info && rm -f module.info.bak
sed -i.bak "s/^Version:.*/Version: $VERSION/" module.info && rm -f module.info.bak
git add module.info
git add composer.lock -f
git commit -m "Version v$VERSION"
Expand Down

0 comments on commit 61986dd

Please sign in to comment.