mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
d743c19fe2
Release Notes: - N/A
31 lines
954 B
Bash
Executable File
31 lines
954 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
OUTPUT_FILE="${1:-$(pwd)/assets/licenses.md}"
|
|
|
|
> $OUTPUT_FILE
|
|
|
|
echo -e "# ###### THEME LICENSES ######\n" >> $OUTPUT_FILE
|
|
cat assets/themes/LICENSES >> $OUTPUT_FILE
|
|
|
|
echo -e "# ###### ICON LICENSES ######\n" >> $OUTPUT_FILE
|
|
cat assets/icons/LICENSES >> $OUTPUT_FILE
|
|
|
|
echo -e "# ###### CODE LICENSES ######\n" >> $OUTPUT_FILE
|
|
|
|
[[ "$(cargo about --version)" == "cargo-about 0.6.1" ]] || cargo install cargo-about@0.6.1
|
|
|
|
echo "Generating cargo licenses"
|
|
cargo about generate --fail -c script/licenses/zed-licenses.toml script/licenses/template.hbs.md >> $OUTPUT_FILE
|
|
|
|
|
|
sed -i.bak 's/"/"/g' $OUTPUT_FILE
|
|
sed -i.bak 's/'/'\''/g' $OUTPUT_FILE # The ` '\'' ` thing ends the string, appends a single quote, and re-opens the string
|
|
sed -i.bak 's/=/=/g' $OUTPUT_FILE
|
|
sed -i.bak 's/`/`/g' $OUTPUT_FILE
|
|
sed -i.bak 's/</</g' $OUTPUT_FILE
|
|
sed -i.bak 's/>/>/g' $OUTPUT_FILE
|
|
|
|
rm -rf "${OUTPUT_FILE}.bak"
|