From 06672828e6fa29ac8551b1b6f36c852a9a3c58a2 Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Mon, 30 Apr 2018 13:20:56 +0200 Subject: [PATCH] force hardlink targets to be in the tar --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2e1ae6d..4d67485 100644 --- a/index.js +++ b/index.js @@ -261,7 +261,7 @@ exports.extract = function (cwd, opts) { var onlink = function () { if (win32) return next() // skip links on win for now before it can be tested xfs.unlink(name, function () { - var srcpath = path.resolve(cwd, header.linkname) + var srcpath = path.join(cwd, path.join('/', header.linkname)) xfs.link(srcpath, name, function (err) { if (err && err.code === 'EPERM' && opts.hardlinkAsFilesFallback) {