diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-19 14:14:27 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-05-19 14:14:27 +0300 |
commit | d1d777fbe517b00544402cc8bdaa99c6550ce417 (patch) | |
tree | 40eeb440f7f4d0c03449abb327bb3824f9047856 /mod/options.cli | |
parent | 4718a059f842a791c89a1922996bb8f1dbea8f65 (diff) |
Make builds page form result control to be of drop-down type
Diffstat (limited to 'mod/options.cli')
-rw-r--r-- | mod/options.cli | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/options.cli b/mod/options.cli index ced3de2..65f5549 100644 --- a/mod/options.cli +++ b/mod/options.cli @@ -456,13 +456,13 @@ namespace brep // string target | tg = "*"; - // Package build result. If empty or *, then no build result constraint - // is applied. Otherwise the value is supposed to be the one of the + // Package build result. If *, then no build result constraint is + // applied. Otherwise the value is supposed to be the one of the // following (ordered) statuses: pending, building, success, warning, // error, abort, abnormal. The first 3 statuses are checked for equality, // the rest - for being greater or equal. // - string result | rs; + string result | rs = "*"; }; } } |