ci: print build logs to stderr for systemd to catch

This commit is contained in:
Aaron Bieber 2023-05-08 06:58:19 -06:00
parent eff68ab450
commit b393d8b1f6
No known key found for this signature in database

4
bin/ci
View File

@ -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