From f5125f8d1df0d2b839886d48056692ac8d55de04 Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 21 Oct 2021 01:30:00 -0400 Subject: [PATCH] Remove mkdir call --- action/steps/run_tests.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/action/steps/run_tests.sh b/action/steps/run_tests.sh index 91a64a0..05d0d5c 100644 --- a/action/steps/run_tests.sh +++ b/action/steps/run_tests.sh @@ -39,11 +39,9 @@ if [ "$PACKAGE_MODE" = "true" ]; then echo "Creating an empty Unity project to add the package to." - mkdir "TempProject" - - unity-editor \ + unity-editor \ -batchMode \ - -createProject "./TempProject" \ + -createProject "./TempProject" \ -quit UNITY_PROJECT_PATH="./TempProject"