From f75f0ebbd115dc4d43420bb1d1de0291511a9a84 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 30 Jun 2022 21:15:19 -0400 Subject: [PATCH] scrap file removals and print dir permissions --- dist/steps/run_tests.sh | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index 9506393..1b230c0 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -49,22 +49,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then echo "###########################" echo "" - # remove .git folder, .github folder, and _activate-license file if they exist - if [ -d "$UNITY_PROJECT_PATH/.git" ]; then - echo "Removing .git folder." - rm -rf "$UNITY_PROJECT_PATH/.git" - fi - - if [ -d "$UNITY_PROJECT_PATH/.github" ]; then - echo "Removing .github folder." - rm -rf "$UNITY_PROJECT_PATH/.github" - fi - - if [ -d "$UNITY_PROJECT_PATH/_activate-license" ]; then - echo "Removing _activate-license file." - rm -rf "$UNITY_PROJECT_PATH/_activate-license" - fi - + ls -ld "$UNITY_PROJECT_PATH" ls -a "$UNITY_PROJECT_PATH" echo ""