diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-12-12 10:31:41 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-12-12 13:23:32 +0200 |
commit | 1b2d4097bd10720337431439f6ab93c7e34aa7cc (patch) | |
tree | 3c6c5ae161295b6faad36fd8f1d140e4fef61697 /mod | |
parent | e4b897bbb0430d6f8f0be140d9df2d748fddb8f3 (diff) |
ci-github: Fix bug found during testing
Diffstat (limited to 'mod')
-rw-r--r-- | mod/mod-ci-github-gq.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-ci-github-gq.cxx b/mod/mod-ci-github-gq.cxx index 774eeed..db69f0c 100644 --- a/mod/mod-ci-github-gq.cxx +++ b/mod/mod-ci-github-gq.cxx @@ -740,7 +740,7 @@ namespace brep { if (ma == "CONFLICTING") r = {move (hs), false, nullopt}; - if (ma == "UNKNOWN") + else if (ma == "UNKNOWN") ; // Still being generated; leave r absent. else throw_json (p, "unexpected mergeable value '" + ma + '\''); |