forked from mirrors/nixpkgs
nix-update-script: make attrPath optional
This commit is contained in:
parent
001389279c
commit
cb219cb6d7
|
@ -1,7 +1,7 @@
|
||||||
{ nix-update }:
|
{ lib, nix-update }:
|
||||||
|
|
||||||
{ attrPath
|
{ attrPath ? null
|
||||||
, extraArgs ? []
|
, extraArgs ? [ ]
|
||||||
}:
|
}:
|
||||||
|
|
||||||
[ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ [ attrPath ]
|
[ "${nix-update}/bin/nix-update" ] ++ extraArgs ++ lib.optional (attrPath != null) attrPath
|
||||||
|
|
Loading…
Reference in a new issue