From b67dca8a612bc3ec105e4a9aa06c89a32e3e6e78 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 13 Jul 2021 10:38:40 +0200 Subject: [PATCH] Fix docker filter usage in runTests --- runTests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runTests b/runTests index 0eaafbc24..9c553494e 100755 --- a/runTests +++ b/runTests @@ -37,7 +37,7 @@ openssl req -x509 -newkey rsa:2048 -keyout platformdata/nginx/cert/host.key -out # clear out any containers if FAST is unset if [[ -z ${FAST+x} ]]; then echo "=> Delete all docker containers first" - docker ps -qa --filter \'label=isCloudronManaged\' | xargs --no-run-if-empty docker rm -f + docker ps -qa --filter "label=isCloudronManaged" | xargs --no-run-if-empty docker rm -f docker rm -f mysql-server echo "==> To skip this run with: FAST=1 ./runTests" else