From 1fbed10375575b0a62b10679096d832fd24746a7 Mon Sep 17 00:00:00 2001 From: Tom Najdek Date: Thu, 26 May 2022 11:48:27 +0200 Subject: [PATCH] Report correct path for outFiles in symlink task (#2639) --- scripts/symlinks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/symlinks.js b/scripts/symlinks.js index 1eae0119be..2c2496cb36 100644 --- a/scripts/symlinks.js +++ b/scripts/symlinks.js @@ -56,7 +56,7 @@ async function getSymlinks(source, options, signatures) { return { action: 'symlink', count: filesProcessedCount, - outFiles: files, // also includes files that has already been symlinked + outFiles: files.map(f => path.join('build', f)), // also includes files that has already been symlinked totalCount: files.length, processingTime: t2 - t1 };