bin/make-release: Don't delete composer.lock

Dependencies are kept up2date by dependabot now.
This commit is contained in:
Johannes Meyer 2025-03-06 16:12:06 +01:00
parent a46ad9ca72
commit e509effd2f
1 changed files with 0 additions and 2 deletions

View File

@ -32,13 +32,11 @@ fi
git rm -rf vendor
rm -rf vendor
rm -f composer.lock
composer install || fail "composer install failed"
git add vendor
find asset/ -type f | xargs -L1 git add -f
echo "v$VERSION" > VERSION
git add VERSION
git add composer.lock -f
git commit -m "Version v$VERSION"
composer validate --no-check-all --strict || fail "Composer validate failed"