Browse Source

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

pull/133/merge
Hagai Shapira 4 years ago
committed by GitHub
parent
commit
3c846be20b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      autogen.sh

+ 5
- 0
autogen.sh View File

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