From ce6bbe6236a191830dfb50d4a549c5fd23de06ae Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Wed, 9 Oct 2024 06:41:37 -0400 Subject: [PATCH] GP-0: Fixing python build issue (Closes #7027) --- gradle/root/distribution.gradle | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gradle/root/distribution.gradle b/gradle/root/distribution.gradle index 6ce7172fef..4f5af41f3d 100644 --- a/gradle/root/distribution.gradle +++ b/gradle/root/distribution.gradle @@ -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, "." } } }