summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorJulien Lepiller <julien@lepiller.eu>2018-07-06 18:32:50 +0200
committerJulien Lepiller <julien@lepiller.eu>2018-08-19 17:34:22 +0200
commitdd1e45335e135fe724acece440782344ef8ca9fd (patch)
treee416090097632f40038815505d6e5dd4a0e81d4b /guix/build
parent766e46e25f4e486a5691380dcfbd81e54a5a3e90 (diff)
downloadgnu-guix-dd1e45335e135fe724acece440782344ef8ca9fd.tar
gnu-guix-dd1e45335e135fe724acece440782344ef8ca9fd.tar.gz
guix: svn: Remove all .svn folders.
* guix/build/svn.scm (svn-fetch): Remove all .svn folders as they contain timestamps.
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/svn.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/svn.scm b/guix/build/svn.scm
index 252d1d4ee5..913f89471b 100644
--- a/guix/build/svn.scm
+++ b/guix/build/svn.scm
@@ -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)