From e3ca3f9215761e6928c74027bfad136eb132386d Mon Sep 17 00:00:00 2001 From: Franz Kohl <44869700+FranzKohl@users.noreply.github.com> Date: Tue, 11 Jan 2022 19:42:07 +0100 Subject: [PATCH] Updated BuildSSASTask.ps1 - added escaped quotes Updated BuildSSASTask.ps1 - added escaped quotes around $projPath to enable building projects with spaces in the path or filename --- BuildSSASTask/BuildSSASTask.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildSSASTask/BuildSSASTask.ps1 b/BuildSSASTask/BuildSSASTask.ps1 index 5cd9db9..8b1a2c3 100644 --- a/BuildSSASTask/BuildSSASTask.ps1 +++ b/BuildSSASTask/BuildSSASTask.ps1 @@ -42,7 +42,7 @@ if(!(Test-Path $projPath)) } Write-Host ("Building project") -$ArgumentList = "$projPath /build" +$ArgumentList = "`"$projPath`" /build" try { Start-Process $devenv $ArgumentList -NoNewWindow -PassThru -Wait -Verbose -RedirectStandardError $true } catch {