X-Git-Url: http://git.scottworley.com/nix-profile-gc/blobdiff_plain/0c0420e86ec3391788a3b37022447bfd00f66443..aa867d5420864eeb9621a2adfd5af497444b76ce:/modules/profile-gc.nix diff --git a/modules/profile-gc.nix b/modules/profile-gc.nix index 5444798..cb9b3a2 100644 --- a/modules/profile-gc.nix +++ b/modules/profile-gc.nix @@ -166,8 +166,8 @@ in { echo "Contemplating profiles for $profile:" >&2 unset active declare -A active - while read p;do - active[$p]=1 + while read pname;do + active[$pname]=1 done < <(verbose_topn ${cfg.logdir}/active-profiles "$profile" ${escapeShellArg cfg.keepLastActive}) current=$(${pkgs.coreutils}/bin/readlink "$profile") currentgen=''${current%-link} @@ -179,7 +179,8 @@ in { echo "(Disregarding unrelated profile $p)" >&2 continue fi - if [[ "$p" == "$current" ]];then + pname=$(${pkgs.coreutils}/bin/basename "$p") + if [[ "$pname" == "$current" ]];then echo "Keeeping current profile $p" >&2 continue fi @@ -187,7 +188,7 @@ in { echo "Keeeping active system/boot profile $p" >&2 continue fi - if [[ "''${active[$p]:-}" ]];then + if [[ "''${active[$pname]:-}" ]];then echo "Keeeping active profile $p" >&2 continue fi