forked from pool/javapackages-tools
This commit is contained in:
25
0002-Do-not-bomb-on-relativePath-construct.patch
Normal file
25
0002-Do-not-bomb-on-relativePath-construct.patch
Normal file
@@ -0,0 +1,25 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user