erplibre/script/install_locally_prod.sh
Mathieu Benoit 863ad4f434 [FIX] installation ubuntu poetry error
- poetry use env python
- makefile add make install to install dev
- check return status in install_locally
- support OCA_maintainer-tools in fresh installation
2021-06-27 00:36:52 -04:00

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