Joshua M. Boniface
ac885b855a
Make sure all of these move to the root of the repository first, then return to where they were afterwards, using pushd/popd. This allows them to be executed from anywhere in the repo.
14 lines
379 B
Bash
Executable File
14 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate the database migration files
|
|
|
|
VERSION="$( head -1 debian/changelog | awk -F'[()-]' '{ print $2 }' )"
|
|
|
|
pushd $( git rev-parse --show-toplevel ) &>/dev/null
|
|
pushd api-daemon &>/dev/null
|
|
export PVC_CONFIG_FILE="./pvcapid.sample.yaml"
|
|
./pvcapid-manage.py db migrate -m "PVC version ${VERSION}"
|
|
./pvcapid-manage.py db upgrade
|
|
popd &>/dev/null
|
|
popd &>/dev/null
|