Skip to content

Commit

Permalink
freeciv-img-extract: Log which .svg you are converting
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Lindqvist <[email protected]>
  • Loading branch information
cazfi committed Oct 4, 2023
1 parent 5ca1cff commit 46d5990
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/freeciv-img-extract/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ pngcrush -q -d "${TILESET_DEST}" "${TEMP_DIR}"/freeciv-web-tileset*.png &&
cp "${TEMP_DIR}"/tileset_spec_*.js "${SPEC_DEST}" &&
echo "converting flag .svg files to .png ..." &&
(for svgfile in $(find "${FREECIV_DIR}"/data/flags/*.svg); do
name="$(basename "$svgfile")"
name="$(basename "${svgfile}")"
pngfile="${FLAG_DEST}/${name/%.svg/-web.png}"
timeout -k 3 8 convert -density 80 -resize 180 "$svgfile" "${pngfile}" ||
echo "${svgfile} -> ${pngfile}"
timeout -k 3 8 convert -density 80 -resize 180 "${svgfile}" "${pngfile}" ||
>&2 echo " ERROR converting ${svgfile} to ${pngfile}"
done) &&
echo "Freeciv-img-extract done." || (>&2 echo "Freeciv-img-extract failed!" && exit 1)
sleep 120

0 comments on commit 46d5990

Please sign in to comment.