Unverified Commit e1fb0288 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

[Backport release-25.11] services.self-deploy: fix nix-build argument format (#464886)

parents 02ca9732 a68b2cbf
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -179,7 +179,13 @@ in
        ${gitWithRepo} checkout FETCH_HEAD

        nix-build${renderNixArgs cfg.nixArgs} ${
          lib.cli.toCommandLineShellGNU { } {
          lib.cli.toCommandLineShell
            (optionName: {
              option = "--${optionName}";
              sep = null;
              explicitBool = false;
            })
            {
              attr = cfg.nixAttribute;
              out-link = outPath;
            }