From 8afe2b3f752413f6fd7eb268dff4f2edd08933c3 Mon Sep 17 00:00:00 2001 From: Ferry Boender Date: Sat, 27 Mar 2021 09:47:48 +0000 Subject: [PATCH] Correctly invoke python in 'test' sla rule. --- build.sla | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sla b/build.sla index 26f94e2..069a290 100644 --- a/build.sla +++ b/build.sla @@ -14,7 +14,7 @@ test () { ROOTDIR="$(pwd)" # Unit / integration tests - cd test && python ./test.py + cd test && /usr/bin/env python3 ./test.py # Code quality linting (flake8) cd $ROOTDIR