We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a3ad9b commit a8f8158Copy full SHA for a8f8158
1 file changed
scripts/build-all.sh
@@ -4,28 +4,10 @@
4
5
set -e
6
7
-if [ -z "$1" ];then
8
- echo "No argument supplied – font path required"
9
- exit 1
10
-fi
11
-
12
-fontPath=$1
13
14
-version=$(font-v report $fontPath | tail -1)
15
-release=ArrowType-RecMonoCode-v$version
16
17
-echo $release
18
19
rm -rf ./fonts
20
21
configs=$(ls ./premade-configs)
22
23
for config in $configs; do
24
- python3 scripts/instantiate-code-fonts.py ./premade-configs/$config $fontPath
+ python3 scripts/instantiate-code-fonts.py ./premade-configs/$config
25
done
26
27
-cp -r ./fonts ./$release
28
29
-zip $release.zip -r $release -x .DS_*
30
31
-rm -rf $release
0 commit comments