From ca3ae976b3df9a131c2bbf05143c8f28879fa09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Va=CC=88a=CC=88ta=CC=88ja=CC=88?= Date: Mon, 10 Oct 2016 14:39:53 +0300 Subject: [PATCH] Fixed startup command. --- 10.0/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/10.0/entrypoint.sh b/10.0/entrypoint.sh index c404ac1..fbb8f37 100755 --- a/10.0/entrypoint.sh +++ b/10.0/entrypoint.sh @@ -12,10 +12,10 @@ export PGHOST PGPORT PGUSER PGPASSWORD case "$1" in --) shift - exec odoo-bin "$@" + exec odoo "$@" ;; -*) - exec odoo-bin "$@" + exec odoo "$@" ;; *) exec "$@"