mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 08:19:48 +01:00
home-manager: forward --no-write-lock-file (#2471)
This commit is contained in:
parent
accfbdf215
commit
3f12ce5f7d
1 changed files with 3 additions and 1 deletions
|
@ -524,6 +524,7 @@ function doHelp() {
|
||||||
echo " --show-trace"
|
echo " --show-trace"
|
||||||
echo " --(no-)substitute"
|
echo " --(no-)substitute"
|
||||||
echo " --no-out-link Do not create a symlink to the output path"
|
echo " --no-out-link Do not create a symlink to the output path"
|
||||||
|
echo " --no-write-lock-file"
|
||||||
echo " --builders VALUE"
|
echo " --builders VALUE"
|
||||||
echo
|
echo
|
||||||
echo "Commands"
|
echo "Commands"
|
||||||
|
@ -625,7 +626,8 @@ while [[ $# -gt 0 ]]; do
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--debug|--keep-failed|--keep-going|--show-trace\
|
--debug|--keep-failed|--keep-going|--show-trace\
|
||||||
|--substitute|--no-substitute|--impure)
|
|--substitute|--no-substitute|--impure\
|
||||||
|
|--no-write-lock-file)
|
||||||
PASSTHROUGH_OPTS+=("$opt")
|
PASSTHROUGH_OPTS+=("$opt")
|
||||||
;;
|
;;
|
||||||
-v|--verbose)
|
-v|--verbose)
|
||||||
|
|
Loading…
Reference in a new issue