18 lines
343 B
Bash
Executable file
18 lines
343 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. ./env_var.sh
|
|
|
|
./script/install/install_locally.sh
|
|
retVal=$?
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo "Error ./script/install/install_locally.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# Update git-repo
|
|
./script/manifest/update_manifest_prod.sh
|
|
retVal=$?
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo "Error manifest update, check git-repo."
|
|
exit 1
|
|
fi
|