From be1b3ec0074aa9b2a7beb22be23dacfd03c460ed Mon Sep 17 00:00:00 2001 From: Andras Fekete Date: Thu, 15 Dec 2022 11:25:43 -0500 Subject: [PATCH] Fix issue with multiple command arguments --- Docker/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Docker/run.sh b/Docker/run.sh index dfbc023cf..fb7d25390 100755 --- a/Docker/run.sh +++ b/Docker/run.sh @@ -1,4 +1,5 @@ echo "Running with \"${@}\"..." docker build -t wolfssl . && \ -docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash -c "./autogen.sh && ./configure ${@} && make && ./testsuite/testsuite.test" && \ +docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash -c "./autogen.sh && ./configure $(echo ${@}) && make && ./testsuite/testsuite.test" && \ docker run -it -v $(pwd)/..:/tmp/wolfssl -w /tmp/wolfssl wolfssl /bin/bash +echo "Exited with error code $?"