Skip to content

Commit

Permalink
nixos-rebuild-ng: don't repeat the keep_going argument (#360287)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada authored Nov 30, 2024
2 parents b22490d + ad35667 commit 9f06965
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ def execute(argv: list[str]) -> None:
path_to_config = nix.nixos_build_flake(
"toplevel",
flake,
keep_going=True,
dry_run=dry_run,
**flake_build_flags,
)
Expand All @@ -247,7 +246,6 @@ def execute(argv: list[str]) -> None:
"system",
args.attr,
args.file,
keep_going=True,
dry_run=dry_run,
**build_flags,
)
Expand All @@ -266,15 +264,13 @@ def execute(argv: list[str]) -> None:
path_to_config = nix.nixos_build_flake(
attr,
flake,
keep_going=True,
**flake_build_flags,
)
else:
path_to_config = nix.nixos_build(
attr,
args.attr,
args.file,
keep_going=True,
**build_flags,
)
vm_path = next(path_to_config.glob("bin/run-*-vm"), "./result/bin/run-*-vm")
Expand Down

0 comments on commit 9f06965

Please sign in to comment.