From 41ebb5fad8f9c6fb2f620ae50fbcdff014d78a9d Mon Sep 17 00:00:00 2001 From: Adrian Riobo Lorenzo Date: Tue, 12 Mar 2024 18:16:14 +0100 Subject: [PATCH] fix: -f option when removing target folder is not working on windows #22 Signed-off-by: Adrian Riobo Lorenzo --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 1b74877..ec595d4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -45,5 +45,5 @@ if [[ ! -z "${TARGET_RESULTS+x}" ]]; then fi if [ "${TARGET_CLEANUP:-}" = "true" ]; then - $(ssh_cmd "rm -fr ${TARGET_FOLDER}") + $(ssh_cmd "rm -r ${TARGET_FOLDER}") fi \ No newline at end of file