diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-19 16:19:29 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-19 16:19:29 +0300 |
commit | 90a6531951546ae88a695410013b908b50cd6fd0 (patch) | |
tree | 441f38bf549354469370ca781801c591dc89aadc /mod/mod-build-log.cxx | |
parent | d1d777fbe517b00544402cc8bdaa99c6550ce417 (diff) |
Rename build states to unbuilt, building and built
Diffstat (limited to 'mod/mod-build-log.cxx')
-rw-r--r-- | mod/mod-build-log.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/mod-build-log.cxx b/mod/mod-build-log.cxx index a1e73ca..3daa1e3 100644 --- a/mod/mod-build-log.cxx +++ b/mod/mod-build-log.cxx @@ -194,7 +194,7 @@ handle (request& rq, response& rs) if (b == nullptr) config_expired ("no package configuration"); - else if (b->state != build_state::tested) + else if (b->state != build_state::built) config_expired ("state is " + to_string (b->state)); else build_db_->load (*b, b->results_section); |