Include assets in make-release.sh

This commit is contained in:
Eric Lippmann 2020-03-13 11:17:03 +01:00
parent 9eb1446f39
commit 98f54c7607

View File

@ -36,6 +36,7 @@ find vendor/ -type f -name "*.php" \
| xargs -L1 git add -f | xargs -L1 git add -f
find vendor/ -type f -name LICENSE | 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 find vendor/ -type f -name '*.json' | xargs -L1 git add -f
find vendor -type f -path 'vendor/*/asset/*' | 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: v$VERSION/" module.info && rm -f module.info.bak
git add module.info git add module.info
git add composer.lock -f git add composer.lock -f