From 22c80eaf5455ee19d28938a2f4e1cdc852257b65 Mon Sep 17 00:00:00 2001 From: Aleksej Date: Mon, 13 Jun 2022 22:29:53 +0200 Subject: [PATCH] fix syntax errors in test.sh --- test/test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.sh b/test/test.sh index e87c0fa..bbaabd9 100755 --- a/test/test.sh +++ b/test/test.sh @@ -24,11 +24,11 @@ python3 testbot & TESTBOTPID=$! sleep 10 # Wait certain amount of time for every test message in the file -for i in $(cat testmsgs); do sleep 5; done +for i in $(cat testmsgs.txt); do sleep 5; done # Kill bots -kill XMPPMIRRORPID -kill TESTBOTPID +kill $XMPPMIRRORPID +kill $TESTBOTPID # Stop and remove containter docker stop xmppbot-test