Skip to content

Commit f37ada4

Browse files
authored
Properly set index_location #660 (#730)
Signed-off-by: Jono Yang <jyang@nexb.com>
1 parent 17af835 commit f37ada4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

minecode_pipelines/pipes/maven.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,8 @@ def __init__(self, index_location=None, index_properties_location=None, last_inc
614614
self.index_location = index_location
615615
self.index_increment_locations = []
616616
else:
617-
self.index_location = self._fetch_index()
617+
index_download = self._fetch_index()
618+
self.index_location = index_download.path
618619
self.index_increment_locations = []
619620

620621
def __del__(self):

0 commit comments

Comments
 (0)