我试图用azure devops上的powershell来处理exeption -try {./ app.exe} catch {regition -oftup $ psitem.exception;退出(1)}
在Azure DevOps中构建管道时,我试图在PowerShell中使用
try{./app.exe} catch{ Write-Output $PSItem.Exception; exit(1)}
,并且在应用程序执行后,它应该返回TRUE(中断管道步骤)或False(标记成功完成)。
我在做什么错?管道一直吸引着终点。
When building a pipeline in Azure DevOps I am trying to use in powershell
try{./app.exe} catch{ Write-Output $PSItem.Exception; exit(1)}
and after app execution it should return true (interrupt a pipe step) or false (mark successfully complete).
What am I doing wrong? Pipeline ends sucessfully all times.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保
$ erroractionPreference
变量设置为stop
在当前范围中:Make sure the
$ErrorActionPreference
variable is set toStop
in the current scope: