diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-06 15:49:18 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-06 15:49:18 +0200 |
commit | 783900c9289b82c5416664593c7885410f368977 (patch) | |
tree | 1c19edff023bcd0afd496ab9893062c64504e906 /doc/invocations-http-server | |
parent | ca8fd841736ca65fa4292887052c78243512962a (diff) | |
download | justbuild-783900c9289b82c5416664593c7885410f368977.tar.gz |
invocation server: actions are also meaningful for exit code 0
With the introduction of new exit codes, the presentation of
an invocation was changed to refrain from showing actions in
abnormal case failure already during analysis phase. However
ca8fd841736ca65fa4292887052c78243512962a did not include the case of
a successful build into the cases of normal circumstances. Fix this.
Diffstat (limited to 'doc/invocations-http-server')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index bdcbb623..c204efa3 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -123,7 +123,7 @@ Inocations {{invocation | e}} {% endfor %} </ul> {% else %} -{% if exit_code == 1 or exit_code == 2 %} +{% if exit_code == 0 or exit_code == 1 or exit_code == 2 %} <h2>Failed actions</h2> {% if failed_actions %} <ul> |