Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:bmwiedemann:reproducible:distribution:ring1
javapackages-tools
0002-Do-not-bomb-on-relativePath-construct.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0002-Do-not-bomb-on-relativePath-construct.patch of Package javapackages-tools
From d124f4d16883d74cdf8ab9064667e128a3695230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fridrich=20=C5=A0trba?= <fridrich.strba@bluewin.ch> Date: Mon, 4 Sep 2023 22:44:10 +0200 Subject: [PATCH 2/2] Do not bomb on <relativePath/> construct --- java-utils/mvn_artifact.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java-utils/mvn_artifact.py b/java-utils/mvn_artifact.py index a45946cd..b7520528 100644 --- a/java-utils/mvn_artifact.py +++ b/java-utils/mvn_artifact.py @@ -167,7 +167,7 @@ def gather_dependencies(pom_path): parent = pom.parent while parent: ppom = None - if parent.relativePath: + if hasattr(parent, 'relativePath') and parent.relativePath: try: ppom_path = os.path.join(os.path.dirname(curr_pom._path), parent.relativePath) -- 2.42.0
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor