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