ZIm/script/generate-licenses
Michael Sloan bcba0b92ed
Fail if cargo about emits warnings (#24996)
Warnings are emitted despite --fail have no license field like `ring`

Release Notes:

- N/A
2025-02-17 07:05:01 +00:00

51 lines
1.4 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"
stderr_file=$(mktemp)
cargo about generate \
--fail \
-c script/licenses/zed-licenses.toml \
"${TEMPLATE_FILE}" \
2> >(tee "$stderr_file") \
>> $OUTPUT_FILE
if cat "$stderr_file" | grep -v "\[WARN\]" > /dev/null; then
echo "Error: License check failed - warnings found" >&2
exit 1
fi
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/&lt;/</g' $OUTPUT_FILE
sed -i.bak 's/&gt;/>/g' $OUTPUT_FILE
rm -rf "${OUTPUT_FILE}.bak"
echo "generate-licenses completed. See $OUTPUT_FILE"