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

:ambulance: fix the path of scripts used in docker_build

parent 3003a1a739ae
No related branches found
No related tags found
No related merge requests found
......@@ -141,9 +141,10 @@
if ensureconf:
raise NotImplementedError
# call build copy
cmd = ['./odoo_scripts/docker_build_copy']
# TODO handle the case when odoo_scripts is not installed
cmd = ['docker_build_copy']
logging.debug(' '.join(cmd))
call(cmd)
# clean on exit
def signal_handler(code, frame):
......@@ -145,9 +146,10 @@
logging.debug(' '.join(cmd))
call(cmd)
# clean on exit
def signal_handler(code, frame):
cmd = ['./odoo_scripts/docker_build_clean']
# TODO handle the case when odoo_scripts is not installed
cmd = ['docker_build_clean']
logging.debug(' '.join(cmd))
call(cmd)
# XXX needed?
......
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