From a28a39a63f8d66c66fd6047a0ce561100a00f0e6 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Thu, 30 May 2024 11:55:54 -0700 Subject: [PATCH] Comment out PNG generation in tools/genexamples.sh We don't reeeeaaaaally need PNG files for this, plus if we include PNGs it will make the repository unwieldy and annoying. Signed-off-by: Alek Ratzloff --- tools/genexamples.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/genexamples.sh b/tools/genexamples.sh index b2c2bd3..ed614cf 100755 --- a/tools/genexamples.sh +++ b/tools/genexamples.sh @@ -18,8 +18,8 @@ while read infile; do pngfile="examples/$(basename -s .in "$infile")-$hash-$matrix.png" echo "Generating $svgfile" python3 -m colorhash "$infile" --output-type svg --out "$svgfile" --hash "$hash" --matrix "$matrix" - echo "Generating $pngfile" - convert "$svgfile" "$pngfile" + #echo "Generating $pngfile" + #convert "$svgfile" "$pngfile" done done done