commit 652be61a32ce1a6a86db7c70f5b1b0bfa48e2f85 parent 7c9f2726571d619fcb7f4c16606449b2fee847d5 Author: Vincent Demeester <vincent@sbr.pm> Date: Fri, 15 Oct 2021 11:43:54 +0200 tools/systems: use -L for nix build 😅 Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/system/system | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/system/system b/tools/system/system @@ -22,7 +22,7 @@ function dry-build() { local machine machine="$(hostname)" unset NIX_PATH - nix build systems.nix --show-trace --dry-run --out-link "$WORK_DIR" "$machine" || + nix build -L systems.nix --show-trace --dry-run --out-link "$WORK_DIR" "$machine" || error "Failed to build system" } @@ -31,7 +31,7 @@ function build() { local machine machine="$(hostname)" unset NIX_PATH - nix build -f systems.nix --show-trace --out-link "$WORK_DIR" "$machine" || + nix build -L -f systems.nix --show-trace --out-link "$WORK_DIR" "$machine" || error "Failed to build system" }