Skip to content

Commit

Permalink
[Backport release-24.05] nixos/systemd-boot: Fix regression in builde…
Browse files Browse the repository at this point in the history
…r script (#342234)
  • Loading branch information
JulienMalka committed Sep 19, 2024
2 parents aecd17c + 875e6ad commit 2198681
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ let
'';

systemdBootBuilder = pkgs.substituteAll rec {
name = "systemd-boot";

dir = "bin";

src = checkedSource;

isExecutable = true;
Expand Down Expand Up @@ -82,7 +86,7 @@ let

finalSystemdBootBuilder = pkgs.writeScript "install-systemd-boot.sh" ''
#!${pkgs.runtimeShell}
${systemdBootBuilder} "$@"
${systemdBootBuilder}/bin/systemd-boot "$@"
${cfg.extraInstallCommands}
'';
in {
Expand Down

0 comments on commit 2198681

Please sign in to comment.