Skip to content

Commit

Permalink
check for black linter in autogen.sh (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
hagaishapira authored Jun 24, 2020
1 parent 61e36a4 commit 3c846be
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ if ! [ -x "$(command -v convert)" ]; then
exit 1
fi

if ! [ -x "$(command -v black)" ]; then
echo 'black is not installed'
exit 1
fi

# preprocess the resources
for pvd in "${providers[@]}"; do
# convert the svg to png for azure provider
Expand Down

0 comments on commit 3c846be

Please sign in to comment.