Skip to content

Commit

Permalink
fix: support file:/... as a location for the pilot files
Browse files Browse the repository at this point in the history
  • Loading branch information
aldbr committed Apr 12, 2024
1 parent f19856b commit 8320ca5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def pilotWrapperScript(
random.shuffle(location)
# we try from the available locations
locs = [os.path.join('https://', loc) for loc in location]
locs = [os.path.join('https://', loc) if not loc.startswith('file:') else loc for loc in location]
locations = locs + [os.path.join(loc, 'pilot') for loc in locs]
# adding also the cvmfs locations
locations += %(CVMFS_locs)s
Expand Down

0 comments on commit 8320ca5

Please sign in to comment.