Skip to content

Commit

Permalink
Quick Fix - update test.sh
Browse files Browse the repository at this point in the history
Quick Fix - update test.sh.
Remove quotes from run in background method. 

Signed-off-by: Miłosz Linkiewicz <[email protected]>
  • Loading branch information
Mionsz authored Oct 7, 2024
1 parent 424f6c1 commit ee34c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/single-node-sample-apps/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit ee34c02

Please sign in to comment.