Skip to content

Commit

Permalink
Fix el_docker when EDALIZE_EXTRA_DOCKER_FLAGS is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Oct 13, 2022
1 parent b02e3eb commit 4044f2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/el_docker
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ if [c for c in containers if c["tool"] == toolname]:
logger.error("ERROR: Tool {} not found in container list.".format(toolname))
exit(1)

extra = os.environ["EDALIZE_EXTRA_DOCKER_FLAGS"].split(" ")
_extra = os.environ.get("EDALIZE_EXTRA_DOCKER_FLAGS")
extra = _extra.split(" ") if _extra else []

prefix = (
[
"docker",
Expand Down

0 comments on commit 4044f2d

Please sign in to comment.