11 lines
154 B
Bash
11 lines
154 B
Bash
#!/bin/bash
|
|
|
|
composer install
|
|
if [[ $1 != "" ]]; then
|
|
bumpver update $1
|
|
else
|
|
bumpver update --patch
|
|
fi
|
|
vendor/bin/box compile
|
|
cp VERSION build/VERSION
|