Skip to content

Commit d2238c7

Browse files
authored
Fix bug in New-PrivateSiteExtension.ps1 (#11138)
1 parent a7688d6 commit d2238c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebJobs.Script.SiteExtension/New-PrivateSiteExtension.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ if (-not (Join-Path $InputPath "extension.xml" | Test-Path))
6565
exit 1
6666
}
6767

68-
if ($AppendOutputName || !$OutputPath)
68+
if ($AppendOutputName -or !$OutputPath)
6969
{
7070
$runtime = $Bitness -eq '32bit' ? 'win-x86' : 'win-x64'
7171
$leaf = (Split-Path $InputPath -Leaf)

0 commit comments

Comments
 (0)