From 3d087e401ca62de18eac3b43757b58395042c21f Mon Sep 17 00:00:00 2001 From: samuel Date: Tue, 2 May 2023 11:51:00 +0200 Subject: [PATCH] [Fix] Add missing unixsock name for ncat command --- src/runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner.sh b/src/runner.sh index 21d93ea..21d187a 100755 --- a/src/runner.sh +++ b/src/runner.sh @@ -113,7 +113,7 @@ reply() ( fwd_reply() ( read -r json - if ! output="$(echo "${json}" | ncat --unixsock 2>&1)"; then + if ! output="$(echo "${json}" | ncat --unixsock "${response_sock}" 2>&1)"; then log_error "Cannot write to sock '${response_sock}': ${output}." fi )