File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments