From a4dc3d020b9249a58f828b4c2879efeb993d56da Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Sat, 2 Nov 2019 17:45:51 +0100 Subject: [PATCH] acl: all users can build on x86-64 linux and aarch64 linux =) --- ofborg/src/acl.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ofborg/src/acl.rs b/ofborg/src/acl.rs index 69f77d0..de3c1de 100644 --- a/ofborg/src/acl.rs +++ b/ofborg/src/acl.rs @@ -39,7 +39,8 @@ impl ACL { } else if self.can_build_restricted(user, repo) { vec![System::X8664Linux, System::Aarch64Linux] } else { - vec![] + // allow everybody to issue aarch64-linux and x8664-linux builds + vec![System::X8664Linux, System::Aarch64Linux] } }