release.sh 942 B

12345678910111213141516171819
  1. # ------------------------------------------------------------------
  2. #
  3. # release.sh
  4. # Copyright 2015 Christopher Simpkins
  5. # MIT license
  6. #
  7. # ------------------------------------------------------------------
  8. # DESCRIPTION
  9. # Moves release ttf build files (after hinting) to the build/ttf path of the repository
  10. cp ../posthinted_builds/Hack-Regular.ttf ../../build/ttf/Hack-Regular.ttf
  11. echo "moved hinted version of Hack-Regular.ttf to ../../build/ttf/Hack-Regular.ttf"
  12. cp ../posthinted_builds/Hack-Bold.ttf ../../build/ttf/Hack-Bold.ttf
  13. echo "moved hinted version of Hack-Bold.ttf to ../../build/ttf/Hack-Bold.ttf"
  14. cp ../posthinted_builds/Hack-Italic.ttf ../../build/ttf/Hack-Italic.ttf
  15. echo "moved hinted version of Hack-Italic.ttf to ../../build/ttf/Hack-Italic.ttf"
  16. cp ../posthinted_builds/Hack-BoldItalic.ttf ../../build/ttf/Hack-BoldItalic.ttf
  17. echo "moved hinted version of Hack-BoldItalic.ttf to ../../build/ttf/Hack-BoldItalic.ttf"