nix-prefetch-git: fix error in home folder cleanup (#350683)

This commit is contained in:
Philip Taron 2024-10-23 13:03:47 -07:00 committed by GitHub
commit c73098dfbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -412,6 +412,7 @@ remove_tmpPath() {
}
remove_tmpHomePath() {
chmod -R u+w "$tmpHomePath"
rm -rf "$tmpHomePath"
}