2021-06-27 01:24:31 -04:00
|
|
|
#!/usr/bin/env bash
|
2022-01-24 14:00:47 -05:00
|
|
|
./script/addons/check_addons_exist.py -m "$2"
|
|
|
|
|
retVal=$?
|
|
|
|
|
if [[ $retVal -ne 0 ]]; then
|
|
|
|
|
echo "Error install_addons.sh"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
./run.sh --no-http --stop-after-init --dev qweb -d "$1" -i "$2" -u "$2"
|
2021-06-27 01:24:31 -04:00
|
|
|
retVal=$?
|
|
|
|
|
if [[ $retVal -ne 0 ]]; then
|
|
|
|
|
echo "Error install_addons_dev.sh"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|