Skip to content

Commit

Permalink
Support of blanks in installation paths
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterVranken committed Dec 11, 2024
1 parent 27a5257 commit c4157a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/PowerShell.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $env:SCRIPT_ROOT = [System.IO.Path]::GetFullPath("$PSScriptRoot")
$sh = (Get-Process -Id $PID).Path

# Start same executable with appropriate session configuration.
.$sh -WindowStyle Normal -Interactive -NoExit -Command {
."$sh" -WindowStyle Normal -Interactive -NoExit -Command {
# Use "dot sourcing" to Run the shared helper script, which prepares all (environment)
# variables, such that the modifications persist in this script.
. setEnv.ps1
Expand All @@ -60,7 +60,7 @@ $sh = (Get-Process -Id $PID).Path
+ ".;" `
+ "$env:PATH"
#write-host "PATH: $env:PATH"
pushd $PSScriptRoot
pushd "$PSScriptRoot"
dir *.ps1
write-host ("To get first help, type:`n" `
+ " buildCodeGenerator -p`n" `
Expand Down

0 comments on commit c4157a3

Please sign in to comment.