Merge pull request #100520 from hyperfekt/patch-3
nixos-install: add passthrough --keep-going flag
This commit is contained in:
commit
eaaf9254aa
|
@ -106,6 +106,12 @@
|
||||||
</arg>
|
</arg>
|
||||||
</arg>
|
</arg>
|
||||||
|
|
||||||
|
<arg>
|
||||||
|
<arg choice='plain'>
|
||||||
|
<option>--keep-going</option>
|
||||||
|
</arg>
|
||||||
|
</arg>
|
||||||
|
|
||||||
<arg>
|
<arg>
|
||||||
<arg choice='plain'>
|
<arg choice='plain'>
|
||||||
<option>--help</option>
|
<option>--help</option>
|
||||||
|
@ -301,6 +307,17 @@
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</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>
|
<varlistentry>
|
||||||
<term>
|
<term>
|
||||||
<option>--help</option>
|
<option>--help</option>
|
||||||
|
|
|
@ -64,7 +64,7 @@ while [ "$#" -gt 0 ]; do
|
||||||
--no-bootloader)
|
--no-bootloader)
|
||||||
noBootLoader=1
|
noBootLoader=1
|
||||||
;;
|
;;
|
||||||
--show-trace|--impure)
|
--show-trace|--impure|--keep-going)
|
||||||
extraBuildFlags+=("$i")
|
extraBuildFlags+=("$i")
|
||||||
;;
|
;;
|
||||||
--help)
|
--help)
|
||||||
|
|
Loading…
Reference in New Issue