From 73943404f05c8531876ef24d7ea03991387c88e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=82osz=20Linkiewicz?= Date: Mon, 7 Oct 2024 17:50:57 +0200 Subject: [PATCH] Quick Fix - update test.sh (#220) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Quick Fix - update test.sh. Remove quotes from run in background method. Signed-off-by: MiƂosz Linkiewicz --- tests/single-node-sample-apps/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/single-node-sample-apps/test.sh b/tests/single-node-sample-apps/test.sh index fc5945eb..6746d1b3 100755 --- a/tests/single-node-sample-apps/test.sh +++ b/tests/single-node-sample-apps/test.sh @@ -81,7 +81,7 @@ function run_in_background() { # Returns PID of a spawned process info "Run: ${1}" echo -e "${1}\n" > "${2}" - stdbuf -o0 -e0 "${1}" &>>"${2}" & + stdbuf -o0 -e0 $1 &>>"${2}" & } function wait_text() {