GP-0: Fixing python build issue (Closes #7027)

This commit is contained in:
Ryan Kurtz 2024-10-09 06:41:37 -04:00
parent cb5ab633de
commit ce6bbe6236

View File

@ -273,10 +273,8 @@ task createGhidraStubsWheel {
File setuptools = project(":Debugger-rmi-trace").findPyDep(".")
exec {
workingDir { cwd.toString() }
commandLine rootProject.PYTHON3, "-m", "pip"
args "wheel", "-w", destinationDir.toString(), "--no-index"
args "-f", setuptools
args "."
commandLine rootProject.PYTHON3
args "-m", "pip", "wheel", "-w", destinationDir.toString(), "--no-index", "-f", setuptools, "."
}
}
}