11 lines
221 B
Plaintext
11 lines
221 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd "${BASH_SOURCE%/*}/.."
|
||
|
|
||
|
rm -rf build-vendor
|
||
|
|
||
|
COMPOSER_VENDOR_DIR=build-vendor composer update \
|
||
|
--prefer-stable --no-dev --no-progress --classmap-authoritative --no-interaction --verbose
|