标签: bash powershell docker .net-core ps1
我有dotnet restore命令的dockertask.ps1文件,问题是如何确保它是否运行没有错误???
dotnet restore
答案 0 :(得分:3)
执行程序后,您可以使用$?捕获退出代码,但只能在执行后立即执行。
$?
dotnet restore ErrNo="$?" if [ "$ErrNo" -ne 0 ] then echo "error code ${ErrNo} received." fi
$?包含上次执行的错误代码。
if命令-ne表示不等于。
if
-ne