summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2019-10-21 21:23:54 +0300
committerRasmus Andersson <rasmus@notion.se>2019-10-21 21:23:54 +0300
commit95d2ac37d95a68887e71e792f6b05de12bec7bef (patch)
treec86e79246cbf8b98bcfe148477671e43f954ab7c
parente258ba0bf0fe0314c04a96fb819f6783ce9227cd (diff)
downloadinter-95d2ac37d95a68887e71e792f6b05de12bec7bef.tar.xz
fixes bug in init.sh which would write a bad makefile
-rwxr-xr-xinit.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.sh b/init.sh
index bb8d01559..fc1baaaef 100755
--- a/init.sh
+++ b/init.sh
@@ -412,10 +412,10 @@ else
# master OTF and TTF rules
for style in "${master_styles[@]}"; do
- echo "${DIST_DIR_TOK}const/Inter-${style}.otf: \$(${style}_ufo_d)" >> "$GEN_MAKE_FILE"
- echo -e "\tmisc/fontbuild compile -o \$@ \$(FONTBUILD_FLAGS) src/Inter-${style}.ufo version.txt" >> "$GEN_MAKE_FILE"
- echo "${DIST_DIR_TOK}const/Inter-${style}.ttf: \$(${style}_ufo_d)" >> "$GEN_MAKE_FILE"
- echo -e "\tmisc/fontbuild compile -o \$@ \$(FONTBUILD_FLAGS) src/Inter-${style}.ufo version.txt" >> "$GEN_MAKE_FILE"
+ echo "${DIST_DIR_TOK}const/Inter-${style}.otf: \$(${style}_ufo_d) version.txt" >> "$GEN_MAKE_FILE"
+ echo -e "\tmisc/fontbuild compile -o \$@ \$(FONTBUILD_FLAGS) src/Inter-${style}.ufo" >> "$GEN_MAKE_FILE"
+ echo "${DIST_DIR_TOK}const/Inter-${style}.ttf: \$(${style}_ufo_d) version.txt" >> "$GEN_MAKE_FILE"
+ echo -e "\tmisc/fontbuild compile -o \$@ \$(FONTBUILD_FLAGS) src/Inter-${style}.ufo" >> "$GEN_MAKE_FILE"
echo "" >> "$GEN_MAKE_FILE"
done