mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 16:26:18 +02:00
nix profile upgrade: Handle unlockable inputs properly
This commit is contained in:
parent
f917970df8
commit
6285c91619
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ struct CmdProfileUpgrade : virtual SourceExprCommand, MixDefaultProfile, MixProf
|
|||
|
||||
auto [attrPath, resolvedRef, drv] = installable->toDerivation();
|
||||
|
||||
if (element.source->resolvedRef == resolvedRef) continue;
|
||||
if (resolvedRef.input.isLocked() && element.source->resolvedRef == resolvedRef) continue;
|
||||
|
||||
printInfo("upgrading '%s' from flake '%s' to '%s'",
|
||||
element.source->attrPath, element.source->resolvedRef, resolvedRef);
|
||||
|
|
Loading…
Reference in a new issue