Skip to content

Commit

Permalink
Merge pull request #100520 from hyperfekt/patch-3
Browse files Browse the repository at this point in the history
nixos-install: add passthrough --keep-going flag
  • Loading branch information
worldofpeace authored Oct 31, 2020
2 parents 39dbc77 + 1338647 commit eaaf925
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions nixos/doc/manual/man-nixos-install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@
</arg>
</arg>

<arg>
<arg choice='plain'>
<option>--keep-going</option>
</arg>
</arg>

<arg>
<arg choice='plain'>
<option>--help</option>
Expand Down Expand Up @@ -301,6 +307,17 @@
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--keep-going</option>
</term>
<listitem>
<para>
Causes Nix to continue building derivations as far as possible
in the face of failed builds.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<option>--help</option>
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/installer/tools/nixos-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ while [ "$#" -gt 0 ]; do
--no-bootloader)
noBootLoader=1
;;
--show-trace|--impure)
--show-trace|--impure|--keep-going)
extraBuildFlags+=("$i")
;;
--help)
Expand Down

0 comments on commit eaaf925

Please sign in to comment.