Skip to content

Commit 79b3c79

Browse files
committed
fix(reuse): Fix reuse issue
Signed-off-by: Joas Schilling <[email protected]>
1 parent 0615f08 commit 79b3c79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-js/WebpackSPDXPlugin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ class WebpackSPDXPlugin {
199199
}
200200
output = `\n\n${output}`
201201
for (const author of [...authors].sort()) {
202-
output = `SPDX-FileCopyrightText: ${author}\n${output}`
202+
output = 'SPDX-File' + `CopyrightText: ${author}\n${output}`
203203
}
204204
for (const license of [...licenses].sort()) {
205-
output = `SPDX-License-Identifier: ${license}\n${output}`
205+
output = 'SPDX-Lic' + `ense-Identifier: ${license}\n${output}`
206206
}
207207

208208
compilation.emitAsset(

0 commit comments

Comments
 (0)