From ca5119b29edb8cc7265bcf68fdd73b47e51a1baf Mon Sep 17 00:00:00 2001 From: Kuma <20806030+lkkuma@users.noreply.github.com> Date: Tue, 31 Oct 2023 22:13:46 -0400 Subject: [PATCH] Wrap "Project Directory" lines to fix dir/ls for paths with spaces (#241) --- dist/steps/run_tests.ps1 | 2 +- dist/steps/run_tests.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/steps/run_tests.ps1 b/dist/steps/run_tests.ps1 index 11f2a40..5042f9b 100644 --- a/dist/steps/run_tests.ps1 +++ b/dist/steps/run_tests.ps1 @@ -51,7 +51,7 @@ Write-Output "###########################" Write-Output "# Project directory #" Write-Output "###########################" Write-Output "" -Get-ChildItem -Hidden -Path $UNITY_PROJECT_PATH +Get-ChildItem -Hidden -Path "$UNITY_PROJECT_PATH" # # Testing for each platform diff --git a/dist/steps/run_tests.sh b/dist/steps/run_tests.sh index 252f52f..7548b4c 100755 --- a/dist/steps/run_tests.sh +++ b/dist/steps/run_tests.sh @@ -123,7 +123,7 @@ echo "###########################" echo "# Project directory #" echo "###########################" echo "" -ls -alh $UNITY_PROJECT_PATH +ls -alh "$UNITY_PROJECT_PATH" # # Testing for each platform