Skip to content

Commit

Permalink
Fix for non-terminating error
Browse files Browse the repository at this point in the history
  • Loading branch information
PrzemyslawKlys committed Aug 12, 2023
1 parent d8fea33 commit 207455e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Private/New-PrepareStructure.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@

# We build module or do other stuff with it
$Success = Start-ModuleBuilding -Configuration $Configuration -PathToProject $PathToProject
if ($Success -eq $false) {
if ($Success -contains $false) {
return $false
}
}

0 comments on commit 207455e

Please sign in to comment.