From b393d8b1f65e10d218b222f5c0fe9f4dde07597c Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 8 May 2023 06:58:19 -0600 Subject: [PATCH] ci: print build logs to stderr for systemd to catch --- bin/ci | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/ci b/bin/ci index 813072a..498de51 100755 --- a/bin/ci +++ b/bin/ci @@ -35,7 +35,7 @@ if [ "${1}" = "update" ]; then handle_update_fail exit 1 fi - if ! nix flake check; then + if ! nix flake check --print-build-logs; then handle_update_check_fail exit 1 fi @@ -56,7 +56,7 @@ if [ "${1}" = "update" ]; then exit 1 fi else - if ! nix flake check; then + if ! nix flake check --print-build-logs; then handle_check_fail exit 1 fi