gpt4 book ai didi

bash - 忽略 GitLab CI 管道脚本中的某些退出代码

转载 作者:行者123 更新时间:2023-12-02 00:08:53 28 4
gpt4 key购买 nike

我在 GitLab CI 中有一个脚本,但一个命令有时以退出代码 101 结尾,这在我的用例中是可以的,我想忽略它。

我会使用 true:

failing_script || true

但它会忽略所有退出代码,所以当出现其他错误时我不会收到通知。

我需要这样的东西:

failing_script || (true only if exit code 101)

最佳答案

这似乎是您要找的:

failing_script|| [ $? -eq 101 ]

关于bash - 忽略 GitLab CI 管道脚本中的某些退出代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59700097/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com