From acb975bcea47fc55f2cb6192b0adfc8640379143 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Tue, 10 May 2022 23:56:20 -0400 Subject: [PATCH] fix improper bash "if" formatting --- dist/steps/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index 092cbfb..2b36220 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -16,7 +16,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then ACTIVATE_LICENSE_FILE_NAME="_activate-license" - if [ -f "$UNITY_PROJECT_PATH/$ACTIVATE_LICENSE_FILE_NAME"]; then + if [ -f "$UNITY_PROJECT_PATH/$ACTIVATE_LICENSE_FILE_NAME" ]; then echo "Package is in repository root. Copying package to temporary directory to avoid Unity Errors." ROOT_FOLDER_NAME=$(echo "${PWD##*/}")