Skip to content

Commit

Permalink
acl: all users can build on x86-64 linux and aarch64 linux =)
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Nov 2, 2019
1 parent d4ab0ad commit a4dc3d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ofborg/src/acl.rs
Expand Up @@ -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]
}
}

Expand Down

0 comments on commit a4dc3d0

Please sign in to comment.