From 3c846be20b87df59909474ed2da40961cb72dd5f Mon Sep 17 00:00:00 2001 From: Hagai Shapira Date: Wed, 24 Jun 2020 16:52:10 +0300 Subject: [PATCH] check for black linter in autogen.sh (#208) --- autogen.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autogen.sh b/autogen.sh index 1486dd0..4c16840 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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