mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-26 18:41:10 +00:00
21 lines
No EOL
942 B
Bash
Executable file
21 lines
No EOL
942 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
[[ "$(cargo about --version)" == "cargo-about 0.5.2" ]] || cargo install cargo-about --locked --git https://github.com/zed-industries/cargo-about --branch error-code-on-warn
|
|
|
|
echo "Generating cargo licenses"
|
|
cargo about generate --fail-on-missing-license -o assets/software_licenses.md -c script/licenses/zed-licenses.toml script/licenses/template.hbs.md
|
|
|
|
# cargo about automatically html-escapes all output, so we need to undo it here:
|
|
sed -i '' 's/"/"/g' assets/software_licenses.md
|
|
sed -i '' 's/'/'\''/g' assets/software_licenses.md # `'\''` ends the string, appends a single quote, and re-opens the string
|
|
sed -i '' 's/=/=/g' assets/software_licenses.md
|
|
sed -i '' 's/`/`/g' assets/software_licenses.md
|
|
sed -i '' 's/</</g' assets/software_licenses.md
|
|
sed -i '' 's/>/>/g' assets/software_licenses.md
|
|
|
|
# Now make theme licenses
|
|
echo "Generating theme licenses"
|
|
cd styles
|
|
npm run build-licenses |