Skip to content

Commit

Permalink
Fix update should run with -y
Browse files Browse the repository at this point in the history
  • Loading branch information
allegroai committed Mar 30, 2022
1 parent f55f4f7 commit b94ec85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clearml_agent/commands/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -3641,7 +3641,7 @@ def _get_docker_cmd(
"{python_single_digit}.$i -m pip --version && " +
"export LOCAL_PYTHON=$(which {python_single_digit}.$i) && break ; done",
"[ ! -z $LOCAL_PYTHON ] || export CLEARML_APT_INSTALL=\"$CLEARML_APT_INSTALL {python_single_digit}-pip\"", # noqa
"[ -z \"$CLEARML_APT_INSTALL\" ] || (apt-get update ; apt-get install -y $CLEARML_APT_INSTALL)",
"[ -z \"$CLEARML_APT_INSTALL\" ] || (apt-get update -y ; apt-get install -y $CLEARML_APT_INSTALL)",
]

if preprocess_bash_script:
Expand Down

0 comments on commit b94ec85

Please sign in to comment.