From 4f12d83889dbbfe24d1c13ba2e1d95e3aaff9693 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Wed, 11 May 2022 00:00:54 -0400 Subject: [PATCH] TEMP remove conditional for package copying --- 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 2b36220..7cb0bac 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##*/}") @@ -25,7 +25,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then rsync -r "$GITHUB_WORKSPACE" "$COPIED_PACKAGE_DIR_NAME" --exclude "ACTIVATE_LICENSE_FILE_NAME" UNITY_PROJECT_PATH="$COPIED_PACKAGE_DIR_NAME/$ROOT_FOLDER_NAME" - fi + #fi echo "" echo "###########################"