Skip to content

Commit 677d63b

Browse files
committed
Fix path to Odoo script in entrypoint.sh
1 parent 119217f commit 677d63b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ done
99

1010
# Set default Odoo command if none is provided
1111
if [ "$1" = "odoo" ] || [ "$1" = "./odoo.py" ] || [ -z "$1" ]; then
12-
exec python ./odoo.py --addons-path=/mnt/extra-addons,/addons "$@"
12+
exec python /odoo/odoo.py --addons-path=/mnt/extra-addons,/addons "$@"
1313
else
1414
exec "$@"
1515
fi

0 commit comments

Comments
 (0)