git.annexia.org
/
goaljobs-goals.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
95fb509
)
libguestfs_fedora: Allow package to be in BUILDING state.
author
Richard W.M. Jones
<rjones@redhat.com>
Thu, 5 Mar 2015 20:04:22 +0000
(20:04 +0000)
committer
Richard W.M. Jones
<rjones@redhat.com>
Thu, 5 Mar 2015 20:04:22 +0000
(20:04 +0000)
libguestfs_fedora.ml
patch
|
blob
|
history
diff --git
a/libguestfs_fedora.ml
b/libguestfs_fedora.ml
index
dc7b248
..
9d3e96e
100644
(file)
--- a/
libguestfs_fedora.ml
+++ b/
libguestfs_fedora.ml
@@
-44,7
+44,9
@@
and fedora_built version branch =
let specfile = fedora_specfile package branch in
target (file_contains_string specfile version.version &&
- koji_build_state (fedora_verrel package branch) == `Complete);
+ match koji_build_state (fedora_verrel package branch) with
+ | `Complete | `Building -> true
+ | _ -> false);
require (sources_uploaded version branch);
require (specfile_pushed version branch);