mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
GP-0: Making build fail if "UNKNOWN" wheel is produced due to old pip.
This commit is contained in:
parent
fb04408b0a
commit
70820402d7
1 changed files with 3 additions and 0 deletions
|
@ -65,6 +65,9 @@ task buildPyPackage {
|
|||
if (exec.result.get().exitValue != 0) {
|
||||
throw new GradleException(exec.standardError.asText.get().strip())
|
||||
}
|
||||
if (exec.standardOutput.asText.get().contains("Successfully built UNKNOWN")) {
|
||||
throw new GradleException("UNKNOWN wheel built...upgrade pip")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue