mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 23:04:27 +00:00
Release Notes: - N/A --------- Co-authored-by: Nia Espera <nia@zed.dev> Co-authored-by: Julia Ryan <juliaryan3.14@gmail.com>
26 lines
715 B
Bash
Executable file
26 lines
715 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
CARGO_ABOUT_VERSION="0.8"
|
|
OUTPUT_FILE="${1:-$(pwd)/assets/licenses.csv}"
|
|
TEMPLATE_FILE="script/licenses/template.csv.hbs"
|
|
|
|
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"
|
|
set -x
|
|
cargo about generate \
|
|
--fail \
|
|
-c script/licenses/zed-licenses.toml \
|
|
$TEMPLATE_FILE \
|
|
| awk 'NR==1{print;next} NF{print | "sort"}' \
|
|
> "$OUTPUT_FILE"
|
|
set +x
|
|
|
|
echo "generate-licenses-csv completed. See $OUTPUT_FILE"
|