You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
316B

  1. #!/bin/bash
  2. for f in build/res/*.svg
  3. do
  4. b=$(basename "$f")
  5. r=${b%.*}
  6. # "/c/Program Files/Inkscape/Inkscape.exe" $f --export-png=res/${r}.png
  7. "/c/Program Files/Inkscape/Inkscape.exe" $f --export-plain-svg=res/${r}.svg --export-text-to-path
  8. # if [[ "$OSTYPE" == "msys" ]]; then
  9. # unix2dos res/${r}.svg
  10. # fi
  11. done