diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/autobuilder-worker-prereq-tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/autobuilder-worker-prereq-tests b/scripts/autobuilder-worker-prereq-tests index 5d7e6e2601..82e9a77bd5 100755 --- a/scripts/autobuilder-worker-prereq-tests +++ b/scripts/autobuilder-worker-prereq-tests | |||
@@ -35,6 +35,11 @@ if [ "$?" != "0" ]; then | |||
35 | echo "Please set git config --global user.email" | 35 | echo "Please set git config --global user.email" |
36 | exit 1 | 36 | exit 1 |
37 | fi | 37 | fi |
38 | python3 -c "import jinja2" | ||
39 | if [ "$?" != "0" ]; then | ||
40 | echo "Please ensure jinja2 is available" | ||
41 | exit 1 | ||
42 | fi | ||
38 | bitbake -p | 43 | bitbake -p |
39 | if [ "$?" != "0" ]; then | 44 | if [ "$?" != "0" ]; then |
40 | echo "Bitbake parsing failed" | 45 | echo "Bitbake parsing failed" |