
We updated our cargo-bundle fork, and this adds to our override to make sure we have the latest version. cargo-about also released a new version upstream which was picked up in nixpkgs, so I've `nix flake update`'d and changed that version as well. Thanks to @niklaskorz for [pinging me](https://github.com/NixOS/nixpkgs/pull/392319#issuecomment-2746122094) about this. You should be able to drop the patch next time you update. Release Notes: - N/A
46 lines
1.3 KiB
Bash
Executable file
46 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
CARGO_ABOUT_VERSION="0.7"
|
|
OUTPUT_FILE="${1:-$(pwd)/assets/licenses.md}"
|
|
TEMPLATE_FILE="script/licenses/template.md.hbs"
|
|
|
|
echo -n "" >"$OUTPUT_FILE"
|
|
|
|
{
|
|
echo -e "# ###### THEME LICENSES ######\n"
|
|
cat assets/themes/LICENSES
|
|
|
|
echo -e "\n# ###### ICON LICENSES ######\n"
|
|
cat assets/icons/LICENSES
|
|
|
|
echo -e "\n# ###### CODE LICENSES ######\n"
|
|
} >>"$OUTPUT_FILE"
|
|
|
|
if ! cargo about --version | grep "cargo-about $CARGO_ABOUT_VERSION" 2>&1 >/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"
|
|
if [ -z "${ALLOW_MISSING_LICENSES-}" ]; then FAIL_FLAG=--fail; else FAIL_FLAG=""; fi
|
|
set -x
|
|
cargo about generate \
|
|
$FAIL_FLAG \
|
|
-c script/licenses/zed-licenses.toml \
|
|
"$TEMPLATE_FILE" >>"$OUTPUT_FILE"
|
|
set +x
|
|
|
|
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"
|
|
|
|
echo "generate-licenses completed. See $OUTPUT_FILE"
|