We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f2df20 commit 0207a3fCopy full SHA for 0207a3f
scripts/validate_my_definition.sh
@@ -9,6 +9,8 @@ elif command -v python3.7; then
9
PYTHON=python3.7
10
elif command -v python3.6; then
11
PYTHON=python3.6
12
+elif command -v python3; then
13
+ PYTHON=python3
14
else
15
echo "No suitable python3 interpreter is found"
16
exit 1
@@ -24,4 +26,4 @@ if $PYTHON -m venv $TEMP; then
24
26
25
27
$PYTHON $TEMP/validate_my_definition.py -d $1 && rm -rf $TEMP
28
fi
-fi
29
+fi
0 commit comments