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:
parent
0e067cf767
commit
92f1fa39d6
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue