1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-24 03:00:35 +02:00

guix: svn: Remove all .svn folders.

* guix/build/svn.scm (svn-fetch): Remove all .svn folders as they contain
timestamps.
This commit is contained in:
Julien Lepiller
2018-07-06 18:32:50 +02:00
parent 766e46e25f
commit dd1e45335e

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)