From c9301a22f2ef4ce10a39ae0d97ed93f1feb8ee5c Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 30 Jun 2022 21:01:28 -0400 Subject: [PATCH] fix license activation files deletion --- dist/steps/run_tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index 70d31ed..9506393 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -60,9 +60,9 @@ if [ "$PACKAGE_MODE" = "true" ]; then rm -rf "$UNITY_PROJECT_PATH/.github" fi - if [ -f "$UNITY_PROJECT_PATH/_activate-license" ]; then + if [ -d "$UNITY_PROJECT_PATH/_activate-license" ]; then echo "Removing _activate-license file." - rm -f "$UNITY_PROJECT_PATH/_activate-license" + rm -rf "$UNITY_PROJECT_PATH/_activate-license" fi ls -a "$UNITY_PROJECT_PATH"