Wrap "Project Directory" lines to fix dir/ls for paths with spaces (#241)
parent
275df9854c
commit
ca5119b29e
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue