grafts: Remove unnecessary 'umask' call.

This is a followup to d722678633.

* guix/build/graft.scm (rewrite-directory): Remove 'umask' call.
master
Ludovic Courtès 2016-10-17 23:55:28 +02:00
parent 3d47aa81ba
commit fb3af759ee
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 0 additions and 5 deletions

View File

@ -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 <http://bugs.gnu.org/23581>.