From ae0cc8e59e9a68f8ac7fa6218c6ef76774257740 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Tue, 3 Oct 2023 00:18:15 +0200 Subject: [PATCH] Fix deploy script cleanup --- scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 5de7eb33..c44e42ef 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -57,7 +57,7 @@ pkill -x -HUP httpd & SETUP # clean up the container -docker exec "$container" rm -fr /tmp/fracker +docker exec -u root "$container" rm -fr /tmp/fracker # notify the user echo -e "\n\n\tDone! Start Fracker on port $host:$port\n\n"