From 4f13c7cc7bbecba1059dcc027383dbfa9c031851 Mon Sep 17 00:00:00 2001 From: thomasjm Date: Wed, 23 Oct 2024 00:46:11 -0700 Subject: [PATCH] nix-prefetch-git: fix error in home folder cleanup --- pkgs/build-support/fetchgit/nix-prefetch-git | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/build-support/fetchgit/nix-prefetch-git b/pkgs/build-support/fetchgit/nix-prefetch-git index b921f161f012..1e8ac0ec66ef 100755 --- a/pkgs/build-support/fetchgit/nix-prefetch-git +++ b/pkgs/build-support/fetchgit/nix-prefetch-git @@ -412,6 +412,7 @@ remove_tmpPath() { } remove_tmpHomePath() { + chmod -R u+w "$tmpHomePath" rm -rf "$tmpHomePath" }