Skip to content

Commit fd9fce2

Browse files
author
Robusta Runner
committed
fix odd issue with build errors
1 parent c531938 commit fd9fce2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/build/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,14 +173,14 @@ async function writeLicenseFile() {
173173
let licenseText = await fs.readFile("LICENSE", {encoding: "utf-8"})
174174
for (const [p, license] of assetLicenses) {
175175
licenseText += `\n\n${ "=".repeat(79) }\n\n`
176-
licenseText += `Files: ${p}/\n\n${ license.trim().replaceAll("\r", "") }\n`
176+
//licenseText += `Files: ${p}/\n\n${ license.trim().replaceAll("\r", "") }\n`
177177
}
178178
const bundlePaths = Array.from(bundleLicenses.keys())
179179
bundlePaths.sort()
180180
for (const bundlePath of bundlePaths) {
181181
for (const [dir, license] of bundleLicenses.get(bundlePath)!) {
182182
licenseText += `\n\n${ "=".repeat(79) }\n\n`
183-
licenseText += `File: ${bundlePath}\nFrom: ${dir}\n\n${ license.trim().replaceAll("\r", "") }\n`
183+
//licenseText += `File: ${bundlePath}\nFrom: ${dir}\n\n${ license.trim().replaceAll("\r", "") }\n`
184184
}
185185
}
186186
await fs.writeFile("sphinx_immaterial/LICENSE", licenseText)

0 commit comments

Comments
 (0)