| 12345678910111213141516171819 | # ------------------------------------------------------------------##  release.sh#  Copyright 2015 Christopher Simpkins#  MIT license## ------------------------------------------------------------------# DESCRIPTION# Moves release ttf build files (after hinting) to the build/ttf path of the repositorycp ../posthinted_builds/Hack-Regular.ttf ../../build/ttf/Hack-Regular.ttfecho "moved hinted version of Hack-Regular.ttf to ../../build/ttf/Hack-Regular.ttf"cp ../posthinted_builds/Hack-Bold.ttf ../../build/ttf/Hack-Bold.ttfecho "moved hinted version of Hack-Bold.ttf to ../../build/ttf/Hack-Bold.ttf"cp ../posthinted_builds/Hack-Italic.ttf ../../build/ttf/Hack-Italic.ttfecho "moved hinted version of Hack-Italic.ttf to ../../build/ttf/Hack-Italic.ttf"cp ../posthinted_builds/Hack-BoldItalic.ttf ../../build/ttf/Hack-BoldItalic.ttfecho "moved hinted version of Hack-BoldItalic.ttf to ../../build/ttf/Hack-BoldItalic.ttf"
 |