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

services.self-deploy: fix nix-build argument format (#462807)

parents 4afcbefa 708b85ac
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;
            }