Fix fatal: pathspec 'vendor' did not match any files

With the --ignore-unmatch, the make-release script no longer complains
that the path specification does not match any file the first time it
is called.
This commit is contained in:
Eric Lippmann 2021-07-26 13:05:13 +02:00
parent 0e067cf767
commit 92f1fa39d6
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ else
BRANCH=$(git rev-parse --abbrev-ref HEAD)
fi
git rm -rf vendor
git rm -rf --ignore-unmatch vendor
rm -rf vendor
rm -f composer.lock
composer install --no-scripts || fail "composer install failed"