Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(reuse): Fix reuse detection in build script
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Nov 24, 2025
commit 9e90f81287db11b07dd6db28b7854273c7047714
4 changes: 2 additions & 2 deletions build-js/WebpackSPDXPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,10 @@ class WebpackSPDXPlugin {
}
output = `\n\n${output}`
for (const author of [...authors].sort()) {
output = `SPDX-FileCopyrightText: ${author}\n${output}`
output = 'SPDX-File' + `CopyrightText: ${author}\n${output}`
}
for (const license of [...licenses].sort()) {
output = `SPDX-License-Identifier: ${license}\n${output}`
output = 'SPDX-Lice' + `nse-Identifier: ${license}\n${output}`
}

compilation.emitAsset(
Expand Down
Loading