docs: resolve svgbob binary (#23399)

(cherry picked from commit 5877e38baadedb8f63d84856348c28cd29b6a2d1)

Co-authored-by: Trent Nelson <trent@solana.com>
This commit is contained in:
mergify[bot] 2022-03-01 00:58:29 +00:00 committed by GitHub
parent 6b71570f48
commit e6f6a8a1b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,11 +8,17 @@ set -e
cd "$(dirname "$0")"
output_dir=static/img
svgbob_cli="$(command -v svgbob_cli || true)"
if [[ -z "$svgbob_cli" ]]; then
svgbob_cli="$(command -v svgbob || true)"
[[ -n "$svgbob_cli" ]] || ( echo "svgbob_cli binary not found" && exit 1 )
fi
mkdir -p "$output_dir"
while read -r bob_file; do
out_file=$(basename "${bob_file%.*}".svg)
svgbob "$bob_file" --output "$output_dir/$out_file"
"$svgbob_cli" "$bob_file" --output "$output_dir/$out_file"
done < <(find art/*.bob)
while read -r msc_file; do