From 8b31cc9bf98d2e9ce043fce9c42f847d271c1262 Mon Sep 17 00:00:00 2001 From: Ursula Date: Sun, 22 Dec 2024 13:08:32 +0200 Subject: [PATCH] fix: Fix file extension inconsistency between code and comments --- docs/convert-ascii-to-svg.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/convert-ascii-to-svg.sh b/docs/convert-ascii-to-svg.sh index f5abd7b229f4a4..d047c9dd39d96b 100755 --- a/docs/convert-ascii-to-svg.sh +++ b/docs/convert-ascii-to-svg.sh @@ -22,6 +22,6 @@ while read -r bob_file; do done < <(find art/*.bob) while read -r msc_file; do - out_file=$(basename "${msc_file%.*}".png) - mscgen -T png -o "$output_dir/$out_file" -i "$msc_file" + out_file=$(basename "${msc_file%.*}".svg) + mscgen -T svg -o "$output_dir/$out_file" -i "$msc_file" done < <(find art/*.msc)