Skip to content

Commit fcbad50

Browse files
committed
!deploy v0.1.0 - First release after fixes to enable passing tests in PS5.1
## 0.1.0 - Initial release to the PowerShell Gallery - Included functions are `Protect-PEMString` and `Unprotect-PEMString`
1 parent f7a445c commit fcbad50

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

psake.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,9 @@ $deployScriptBlock = {
284284
" Deployment successful!"
285285
}
286286
catch {
287-
Write-BuildError $_.Exception.Message
287+
$err = $_
288+
Write-BuildError $err.Exception.Message
289+
throw $err
288290
}
289291
}
290292
else {

0 commit comments

Comments
 (0)