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 <alekratz@gmail.com>
This commit is contained in:
2024-05-30 11:55:54 -07:00
parent 8e18d623f1
commit a28a39a63f

View File

@@ -18,8 +18,8 @@ while read infile; do
pngfile="examples/$(basename -s .in "$infile")-$hash-$matrix.png" pngfile="examples/$(basename -s .in "$infile")-$hash-$matrix.png"
echo "Generating $svgfile" echo "Generating $svgfile"
python3 -m colorhash "$infile" --output-type svg --out "$svgfile" --hash "$hash" --matrix "$matrix" python3 -m colorhash "$infile" --output-type svg --out "$svgfile" --hash "$hash" --matrix "$matrix"
echo "Generating $pngfile" #echo "Generating $pngfile"
convert "$svgfile" "$pngfile" #convert "$svgfile" "$pngfile"
done done
done done
done done