From 4391a5a374b7b75ca8fa69d35dcb5c5f9ad7f765 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 2 Apr 2020 15:59:20 +0200 Subject: Rewrite of the font converter It work way better now and no user interaction is needed anymore. I've also added a command to the run script that easily accesses the font conversion. --- run | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'run') diff --git a/run b/run index 1664cbb..8c2a8c9 100755 --- a/run +++ b/run @@ -167,6 +167,12 @@ make_tidy() { find ./src -type f | xargs -l -i sh -c 'printf %s "$(< {})" > {}' } +make_font() { + cd ./src/resources/ || exit 1 + sh conv.sh + cd ../../ || exit 1 +} + make_clean() { rm -rf ./build ./iso } @@ -200,7 +206,10 @@ elif [ "${mode}" = "sync" ]; then make_sync elif [ "${mode}" = "tidy" ]; then make_tidy +elif [ "${mode}" = "font" ]; then + make_font + make_tidy else echo "Please use the following syntax:" - echo "./run {cross | build | clean | test | debug | image}" + echo "./run {cross | build | clean | test | debug | image | sync | tidy | font}" fi -- cgit v1.2.3