2020-06-22 22:36:54 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
. ./env_var.sh
|
|
|
|
|
|
|
|
|
|
./script/install_locally.sh
|
2021-05-30 22:27:16 -04:00
|
|
|
retVal=$?
|
|
|
|
|
if [[ $retVal -ne 0 ]]; then
|
|
|
|
|
echo "Error ./script/install_locally.sh"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2020-06-22 22:36:54 -04:00
|
|
|
|
|
|
|
|
# Update git-repo
|
2020-07-12 18:24:00 -04:00
|
|
|
./script/update_manifest_prod.sh
|
2021-05-30 22:27:16 -04:00
|
|
|
if [[ $retVal -ne 0 ]]; then
|
|
|
|
|
echo "Error manifest update, check git-repo."
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|