2019-12-22 22:15:31 -07:00
|
|
|
#!/bin/bash
|
2020-04-14 13:32:24 -06:00
|
|
|
|
2023-07-08 16:13:58 -06:00
|
|
|
echo "Generating credits file..."
|
2020-04-14 13:32:24 -06:00
|
|
|
|
2023-07-08 16:13:58 -06:00
|
|
|
npx generate-license-file --ci --no-spinner --input www/package.json --output license-credits.txt --overwrite
|
2019-09-10 22:34:01 -06:00
|
|
|
|
|
|
|
cp www/pages/credits.template.html www/pages/credits.html
|
2023-07-08 16:13:58 -06:00
|
|
|
sed -e "/{{credits}}/r license-credits.txt" -e "/{{credits}}/d" -i www/pages/credits.html
|