mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-4570 ensure supported python version is not used for build tasks
This commit is contained in:
parent
e084a4bede
commit
772694c13c
1 changed files with 3 additions and 1 deletions
|
@ -80,7 +80,9 @@ def findPython3() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Don't fail until task execution. Just let "python3" fail.
|
// Don't fail until task execution. Just let "python3" fail.
|
||||||
return 'python3'
|
// Force use of non-existent python3.7 instead of unsupported python version
|
||||||
|
// which should fail if a python build is performed.
|
||||||
|
return 'python3.7'
|
||||||
}
|
}
|
||||||
|
|
||||||
ext.PYTHON3 = findPython3()
|
ext.PYTHON3 = findPython3()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue