aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/archive.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/archive.cc')
-rw-r--r--src/libutil/archive.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libutil/archive.cc b/src/libutil/archive.cc
index 3aa120270..db544a212 100644
--- a/src/libutil/archive.cc
+++ b/src/libutil/archive.cc
@@ -375,4 +375,13 @@ void copyNAR(Source & source, Sink & sink)
}
+void copyPath(const Path & from, const Path & to)
+{
+ auto source = sinkToSource([&](Sink & sink) {
+ dumpPath(from, sink);
+ });
+ restorePath(to, *source);
+}
+
+
}