nixos/systemd-boot: set strict error handling in installer script (#501155)

This commit is contained in:
Connor Baker
2026-03-20 00:06:34 +00:00
committed by GitHub
@@ -102,6 +102,7 @@ let
finalSystemdBootBuilder = pkgs.writeScript "install-systemd-boot.sh" ''
#!${pkgs.runtimeShell}
set -euo pipefail
${systemdBootBuilder}/bin/systemd-boot "$@"
${cfg.extraInstallCommands}
'';