Disregard aarch64-linux / i686-linux tags

This commit is contained in:
Graham Christensen 2017-12-14 08:04:35 -05:00
parent cee37464d0
commit 8831326853
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -90,6 +90,8 @@ impl RebuildTagger {
match attr.rsplit(".").next() {
Some("x86_64-darwin") => { counter_darwin += 1; }
Some("x86_64-linux") => { counter_linux += 1; }
Some("aarch64-linux") => { }
Some("i686-linux") => { }
Some(arch) => { info!("Unknown arch: {:?}", arch); }
None => { info!("Cannot grok attr: {:?}", attr); }
}