From 8831326853f495640fd26eb1b689cb8cd8b38aeb Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 14 Dec 2017 08:04:35 -0500 Subject: [PATCH] Disregard aarch64-linux / i686-linux tags --- ofborg/src/tagger.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ofborg/src/tagger.rs b/ofborg/src/tagger.rs index 557b92f..991f232 100644 --- a/ofborg/src/tagger.rs +++ b/ofborg/src/tagger.rs @@ -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); } }