mirror of
https://github.com/nix-community/home-manager
synced 2024-11-22 20:53:14 +00:00
files: avoid cleanup if old home-files is missing
This commit is contained in:
parent
8afee75d0d
commit
171702dd88
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ in
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanOldGen() {
|
function cleanOldGen() {
|
||||||
if [[ ! -v oldGenPath ]] ; then
|
if [[ ! -v oldGenPath || ! -e "$oldGenPath/home-files" ]] ; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue