check for black linter in autogen.sh

pull/208/head
Hagai Shapira 5 years ago
parent 197ecde467
commit 04fcf72a0e

@ -21,6 +21,11 @@ if ! [ -x "$(command -v convert)" ]; then
exit 1 exit 1
fi fi
if ! [ -x "$(command -v black)" ]; then
echo 'black is not installed'
exit 1
fi
# preprocess the resources # preprocess the resources
for pvd in "${providers[@]}"; do for pvd in "${providers[@]}"; do
# convert the svg to png for azure provider # convert the svg to png for azure provider

Loading…
Cancel
Save