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 7c46b02 commit 9e873c4Copy full SHA for 9e873c4
scripts/validate_my_definition.sh
@@ -3,7 +3,11 @@ set -e
3
4
export TEMP=$(mktemp -d -t alertlogic-sdk-definitions-validation-XXXX)
5
6
-if command -v python3.8; then
+if command -v python3.10; then
7
+ PYTHON=python3.10
8
+elif command -v python3.9; then
9
+ PYTHON=python3.9
10
+elif command -v python3.8; then
11
PYTHON=python3.8
12
elif command -v python3.7; then
13
PYTHON=python3.7
0 commit comments