mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-24 06:19:37 +00:00
48c6eb9ac7
Co-authored-by: Joseph T. Lyons <JosephTLyons@gmail.com>
40 lines
1.2 KiB
Bash
Executable file
40 lines
1.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
CARGO_ABOUT_VERSION="0.6.1"
|
|
OUTPUT_FILE="${1:-$(pwd)/assets/licenses.md}"
|
|
TEMPLATE_FILE="script/licenses/template.md.hbs"
|
|
|
|
> $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
|
|
|
|
if ! cargo install --list | grep "cargo-about v$CARGO_ABOUT_VERSION" > /dev/null; then
|
|
echo "Installing cargo-about@$CARGO_ABOUT_VERSION..."
|
|
cargo install "cargo-about@$CARGO_ABOUT_VERSION"
|
|
else
|
|
echo "cargo-about@$CARGO_ABOUT_VERSION is already installed."
|
|
fi
|
|
|
|
echo "Generating cargo licenses"
|
|
cargo about generate \
|
|
--fail \
|
|
-c script/licenses/zed-licenses.toml \
|
|
"${TEMPLATE_FILE}" >> $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"
|