From 5123c47c284011ed32a4f59ecc877641ee876679 Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Mon, 5 Aug 2024 13:44:07 -0400 Subject: [PATCH] GP-4819: Moving pythonw wheels to ExternalPyWheels directory --- gradle/hasPythonPackage.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/hasPythonPackage.gradle b/gradle/hasPythonPackage.gradle index ce895ebae6..ef1fc91276 100644 --- a/gradle/hasPythonPackage.gradle +++ b/gradle/hasPythonPackage.gradle @@ -5,7 +5,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -25,7 +25,7 @@ eclipse.project { ext.findPyDep = { name -> File inDeps = file("${DEPS_DIR}/${project.name}/${name}") - File inRepo = file("${BIN_REPO}/${getGhidraRelativePath(project)}/${name}") + File inRepo = file("${BIN_REPO}/ExternalPyWheels/${name}") if (inDeps.exists()) { return inDeps }