From 4312493fc480771aadbd95c4c1f543d0286937be Mon Sep 17 00:00:00 2001 From: Aaron Trudeau <36064197+trudeaua21@users.noreply.github.com> Date: Thu, 27 Jan 2022 02:32:02 -0500 Subject: [PATCH] clean up logging --- dist/steps/run_tests.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index e86bb82..4b9a651 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -47,6 +47,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then # use jq to add the package to the temp project through manually modifying Packages/manifest.json echo "Adding package to the temporary project's dependencies and testables..." + echo "" PACKAGE_MANIFEST_PATH="./TempProject/Packages/manifest.json" if [ ! -f "$PACKAGE_MANIFEST_PATH" ]; then @@ -62,11 +63,7 @@ if [ "$PACKAGE_MODE" = "true" ]; then '.dependencies += {"\($packageName)": "file:\($projectPath)"} | . += {testables: ["\($packageName)"]}' \ > "$PACKAGE_MANIFEST_PATH" - cat "$PACKAGE_MANIFEST_PATH" - echo "" - UNITY_PROJECT_PATH="./TempProject" - fi #