Skip to content

Commit

Permalink
Merge pull request #7565 from aldbr/v8.0_FIX_pilot-wrapper-https
Browse files Browse the repository at this point in the history
[8.0] fix: support `file:/path/to/pilot_files` as a location for the pilot files
  • Loading branch information
fstagni authored Apr 16, 2024
2 parents 24f11c3 + a67db21 commit abb41b5
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:', 'https:')) 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 abb41b5

Please sign in to comment.