Report correct path for outFiles in symlink task (#2639)

This commit is contained in:
Tom Najdek 2022-05-26 11:48:27 +02:00 committed by GitHub
parent 89dd6faa2b
commit 1fbed10375
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
};