summaryrefslogtreecommitdiff
path: root/haunt/asset.scm
diff options
context:
space:
mode:
Diffstat (limited to 'haunt/asset.scm')
-rw-r--r--haunt/asset.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/haunt/asset.scm b/haunt/asset.scm
index 2d9e27b..78d539b 100644
--- a/haunt/asset.scm
+++ b/haunt/asset.scm
@@ -27,6 +27,7 @@
#:use-module (srfi srfi-9)
#:use-module (ice-9 ftw)
#:use-module (ice-9 match)
+ #:use-module (haunt artifact)
#:use-module (haunt utils)
#:export (make-asset
asset?
@@ -71,7 +72,7 @@ files in DIRECTORY that match KEEP?, recursively."
(let* ((file-name* (file-name-components file-name))
(target (join-file-name-components
(append dest* (drop file-name* base-length)))))
- (cons (make-asset file-name target) memo))
+ (cons (verbatim-artifact file-name target) memo))
memo))))
(define (noop file-name stat memo) memo)