From 4bcbbaa25a958668aef91c3b0818c2f3d0883f34 Mon Sep 17 00:00:00 2001 From: Eugene Rakhmatulin Date: Fri, 13 Mar 2026 12:23:41 -0700 Subject: [PATCH] Bugfixes --- launch-cluster.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launch-cluster.sh b/launch-cluster.sh index 15cb80d..d312778 100755 --- a/launch-cluster.sh +++ b/launch-cluster.sh @@ -586,7 +586,8 @@ patch_script_in_container() { [[ "$node_rank" -gt 0 ]] && extra="$extra --headless" local patch="sed -i '/--distributed-executor-backend/d' /workspace/exec-script.sh && \ - echo '$extra' >> /workspace/exec-script.sh" + echo '$extra' >> /workspace/exec-script.sh && \ + chmod +x /workspace/exec-script.sh" if [[ "$is_local" == "true" ]]; then docker exec "$container" bash -c "$patch"