Wrap "Project Directory" lines to fix dir/ls for paths with spaces

Wrap "Project Directory" lines to fix dir/ls for paths with spaces
pull/241/head
Kuma 2023-10-01 16:04:36 -04:00
parent 275df9854c
commit 2856f0777e
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ Write-Output "###########################"
Write-Output "# Project directory #" Write-Output "# Project directory #"
Write-Output "###########################" Write-Output "###########################"
Write-Output "" Write-Output ""
Get-ChildItem -Hidden -Path $UNITY_PROJECT_PATH Get-ChildItem -Hidden -Path "$UNITY_PROJECT_PATH"
# #
# Testing for each platform # Testing for each platform

View File

@ -123,7 +123,7 @@ echo "###########################"
echo "# Project directory #" echo "# Project directory #"
echo "###########################" echo "###########################"
echo "" echo ""
ls -alh $UNITY_PROJECT_PATH ls -alh "$UNITY_PROJECT_PATH"
# #
# Testing for each platform # Testing for each platform