We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6c2556 commit 0dfb64cCopy full SHA for 0dfb64c
src/docbuilder/chroot_builder.rs
@@ -47,17 +47,16 @@ impl DocBuilder {
47
48
/// Builds package documentation in chroot environment and adds into cratesfyi database
49
pub fn build_package(&mut self, name: &str, version: &str) -> Result<bool> {
50
- info!("Building package {}-{}", name, version);
51
-
52
// Skip crates according to options
53
if (self.options.skip_if_log_exists &&
54
self.cache.contains(&format!("{}-{}", name, version)[..])) ||
55
(self.options.skip_if_exists &&
56
self.db_cache.contains(&format!("{}-{}", name, version)[..])) {
57
- info!("Skipping");
58
return Ok(false);
59
}
60
+ info!("Building package {}-{}", name, version);
+
61
62
// Database connection
63
let conn = try!(connect_db());
0 commit comments