guix: svn: Remove all .svn folders.

* guix/build/svn.scm (svn-fetch): Remove all .svn folders as they contain
timestamps.
master
Julien Lepiller 2018-07-06 18:32:50 +02:00
parent 766e46e25f
commit dd1e45335e
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ valid Subversion revision. Return #t on success, #f otherwise."
;; of the repo. Since we want a fixed output, this directory needs
;; to be taken out.
(with-directory-excursion directory
(delete-file-recursively ".svn"))
(for-each delete-file-recursively (find-files "." "^\\.svn$" #:directories? #t)))
#t)