2020-06-22 22:36:54 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
. ./env_var.sh
|
|
|
|
|
|
2024-02-23 13:01:10 -05:00
|
|
|
Red='\033[0;31m' # Red
|
|
|
|
|
Color_Off='\033[0m' # Text Reset
|
|
|
|
|
|
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
|
2024-02-23 13:01:10 -05:00
|
|
|
echo -e "${Red}Error${Color_Off} ./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
|
2024-02-23 13:01:10 -05:00
|
|
|
echo -e "${Red}Error${Color_Off} manifest update, check git-repo."
|
2021-05-30 22:27:16 -04:00
|
|
|
exit 1
|
|
|
|
|
fi
|