make-release: Fix xargs git add

This commit is contained in:
Eric Lippmann 2019-03-26 16:35:17 +01:00
parent 16d038aa8c
commit 5f7898e088
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ find vendor/ -type f -name "*.php" \
| grep -v '/example/' \
| grep -v '/tests/' \
| grep -v '/test/' \
| xargs git add -f
find vendor/ -type f -name LICENSE | xargs git add -f
| xargs -L1 git add -f
find vendor/ -type f -name LICENSE | xargs -L1 git add -f
sed -i "s/^Version:.*/Version: v$VERSION/" module.info
git add module.info
git commit -m "Version v$VERSION"