From 2856f0777e0743ea6e3c77af1706645cb995c4f6 Mon Sep 17 00:00:00 2001 From: Kuma <20806030+lkkuma@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:04:36 -0400 Subject: [PATCH] Wrap "Project Directory" lines to fix dir/ls for paths with spaces Wrap "Project Directory" lines to fix dir/ls for paths with spaces --- 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