Wrap "Project Directory" lines to fix dir/ls for paths with spaces (#241)

pull/242/head
Kuma 2023-10-31 22:13:46 -04:00 committed by GitHub
parent 275df9854c
commit ca5119b29e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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