check for black linter in autogen.sh (#208)

pull/133/merge
Hagai Shapira 4 years ago committed by GitHub
parent 61e36a45e9
commit 3c846be20b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save