Skip to content
Snippets Groups Projects
Commit 8ad0720efb9d authored by Vincent Hatakeyama's avatar Vincent Hatakeyama
Browse files

start: do not loose odoo return code value

parent 8baef57a5109
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,11 @@
History
=======
21.7.2 (2024-04-23)
-------------------
start: do not loose odoo return code value
21.7.1 (2024-04-22)
-------------------
......
......@@ -178,4 +178,5 @@
echo "$INFO Odoo Version: $($odoo_bin --version)"
echo "$DEBUG command line is: ${PRE_ODOO_BIN}$(which $odoo_bin) $config $db_host $addons_path $args $load_language"
# need to use eval due to spaces in the variables, otherwise zsh would treat one as an argument
exec eval ${PRE_ODOO_BIN}$(which $odoo_bin) $config $db_host $addons_path $args $load_language 2>&1 | tee $odoo_scripts_start_logfile
eval ${PRE_ODOO_BIN}$(which $odoo_bin) $config $db_host $addons_path $args $load_language 2>&1 | tee $odoo_scripts_start_logfile
exit $pipestatus[1]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment