From 104daac70d2fc876f06edfe712d5c27a39f89073 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 24 Nov 2017 14:41:38 -0500 Subject: [PATCH] Don't build release on darwin --- ofborg/src/tasks/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofborg/src/tasks/build.rs b/ofborg/src/tasks/build.rs index c854c3c..967a40b 100644 --- a/ofborg/src/tasks/build.rs +++ b/ofborg/src/tasks/build.rs @@ -68,7 +68,7 @@ impl worker::SimpleWorker for BuildWorker { _ => "./default.nix" }; - if buildfile == "./nixos/default.nix" && self.system != "x86_64-linux" { + if buildfile == "./nixos/release.nix" && self.system != "x86_64-linux" { // NixOS jobs get routed to all builders, even though darwin // cannot build them. return self.actions().nasty_hack_linux_only(&job);