From 8cf2737c1856b19c481dcb1abe8a8d9e59040303 Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Thu, 1 Sep 2022 13:47:18 -0700 Subject: [PATCH] entrypoint.sh: try to copy, dont fail --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index e546d51a..86def03d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -18,11 +18,11 @@ set -e if [ "$DEV_MODE_PATH" != "" ] && [ -z "$(ls -A $DEV_MODE_PATH/.theia)" ] then - cp -R /opt/odoo/hibou-suite/.theia $DEV_MODE_PATH + cp -R /opt/odoo/hibou-suite/.theia $DEV_MODE_PATH || true fi if [ "$DEV_MODE_PATH" != "" ] && [ -z "$(ls -A $DEV_MODE_PATH/.pylintrc)" ] then - cp -R /opt/odoo/hibou-suite/.pylintrc $DEV_MODE_PATH + cp -R /opt/odoo/hibou-suite/.pylintrc $DEV_MODE_PATH || true fi if [ "$DEV_MODE_PATH" == "" ]