Skip to content

Commit

Permalink
Fetch jars and shas from same location
Browse files Browse the repository at this point in the history
If we are getting our third party dependent shas from a custom URL,
then the jars should also come from the same location.

Signed-off-by: Adam Farley <[email protected]>
  • Loading branch information
adamfarley committed Sep 5, 2024
1 parent 751ecc8 commit 0dfa1e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/getDependencies.pl
Original file line number Diff line number Diff line change
Expand Up @@ -306,10 +306,10 @@
$url_custom .= "systemtest_prereqs/";
$url_custom .= $jars_info[$i]{dir};
$url_custom .= '/' unless $url_custom =~ /\/$/;
$url_custom .= $jars_info[$i]{fname};
$url = "$url_custom";
}

$url = "$url_custom/$jars_info[$i]{fname}";

if (defined $shaurl && $shaurl ne '') {
$shaurl = "$url_custom/$shafn";
}
Expand Down

0 comments on commit 0dfa1e7

Please sign in to comment.