From 9dd5206732a0431cb003c594cee1f2981cc2bbb5 Mon Sep 17 00:00:00 2001 From: j Date: Thu, 15 Jan 2026 11:06:53 +1300 Subject: [PATCH] Update source/agent-remote/common.sh --- source/agent-remote/common.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/agent-remote/common.sh b/source/agent-remote/common.sh index 0015035..f770d22 100755 --- a/source/agent-remote/common.sh +++ b/source/agent-remote/common.sh @@ -45,7 +45,10 @@ _create_and_start_container() { _is_container_running "$container_name" && return 0 _start_container "$container_name" else + # Disable glob expansion to prevent * in arguments from expanding + set -f eval "$run_cmd" + set +f fi if ! _is_container_running "$container_name"; then