From fb3af759ee284fb1cb14c5514ed0432d9cbbfdbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 17 Oct 2016 23:55:28 +0200 Subject: [PATCH] grafts: Remove unnecessary 'umask' call. This is a followup to d72267863382041b84a9712eea354882be72ef55. * guix/build/graft.scm (rewrite-directory): Remove 'umask' call. --- guix/build/graft.scm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/guix/build/graft.scm b/guix/build/graft.scm index 7025b72fea5b8267ce2f76bdd8651d07d0ddd149..16df169ec70cf53a4062f2c5fbcdd61c232a804b 100644 --- a/guix/build/graft.scm +++ b/guix/build/graft.scm @@ -307,11 +307,6 @@ file name pairs." (else (error "unsupported file type" stat))))) - ;; XXX: Work around occasional "suspicious ownership or permission" daemon - ;; errors that arise when we create the top-level /gnu/store/… directory as - ;; #o777. - (umask #o022) - ;; Use 'exit-on-exception' to force an exit upon I/O errors, given that ;; 'n-par-for-each' silently swallows exceptions. ;; See .