21 lines
455 B
Bash
Executable file
21 lines
455 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. ./env_var.sh
|
|
|
|
Red='\033[0;31m' # Red
|
|
Color_Off='\033[0m' # Text Reset
|
|
|
|
./script/install/install_locally.sh
|
|
retVal=$?
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo -e "${Red}Error${Color_Off} ./script/install/install_locally.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# Update git-repo
|
|
./script/manifest/update_manifest_prod.sh
|
|
retVal=$?
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo -e "${Red}Error${Color_Off} manifest update, check git-repo."
|
|
exit 1
|
|
fi
|