Skip to content

Commit 55148a9

Browse files
Jicqueldsauvage
andcommitted
Fix gprbuild gpr_paths setup
self.gpr_paths was checked instead of gpr_paths. Co-authored-by: David SAUVAGE - AdaLabs Ltd <[email protected]>
1 parent 33f370d commit 55148a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gprproject/gprbuild.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def __init__(
116116
self.gnatcov = gnatcov
117117
self.symcc = symcc
118118
self.gpr_paths: list[str] = []
119-
if self.gpr_paths:
119+
if gpr_paths:
120120
self.gpr_paths = list(gpr_paths)
121121
else:
122122
self.gpr_paths = []

0 commit comments

Comments
 (0)