- poetry use env python - makefile add make install to install dev - check return status in install_locally - support OCA_maintainer-tools in fresh installation
17 lines
308 B
Bash
Executable file
17 lines
308 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
. ./env_var.sh
|
|
|
|
./script/install_locally.sh
|
|
retVal=$?
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo "Error ./script/install_locally.sh"
|
|
exit 1
|
|
fi
|
|
|
|
# Update git-repo
|
|
./script/update_manifest_prod.sh
|
|
if [[ $retVal -ne 0 ]]; then
|
|
echo "Error manifest update, check git-repo."
|
|
exit 1
|
|
fi
|