Skip to content

Commit

Permalink
build details
Browse files Browse the repository at this point in the history
  • Loading branch information
juandelperal committed Oct 7, 2020
1 parent 65d95fd commit 1dd6b28
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ fonts/*/*.txt
fonts/*/*.png
fonts/*/*.zip
venv
temp
temp
fonts
8 changes: 5 additions & 3 deletions sources/build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
set -e

# Go the sources directory to run commands
Expand All @@ -9,8 +9,10 @@ echo $(pwd)

rm -rf ../fonts

echo "Set venv"
. ../venv/bin/activate
# Activate environment
if [ -d "../venv" ]; then
. ../venv/bin/activate
fi

echo "Converting to designspace"
mkdir -p ../temp
Expand Down

0 comments on commit 1dd6b28

Please sign in to comment.