Skip to content

Commit

Permalink
Merge pull request #52 from jesperes/master
Browse files Browse the repository at this point in the history
Fix for issue #51: do not assume all urls are keil.com
  • Loading branch information
edriouk authored Nov 29, 2017
2 parents e0b39f8 + eba63ff commit d9469e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ protected void aggregateCmsis(List<String[]> list) {
}

// Make url always ends in '/'
final String pdscUrl = CmsisConstants.REPO_KEIL_PACK_SERVER;
final String pdscUrl = Utils.addTrailingSlash(pdsc[0]);
final String pdscName = pdsc[1];
final String pdscVersion = pdsc[2];
final String packFamilyId = Utils.extractBaseFileName(pdscName);
Expand Down

0 comments on commit d9469e8

Please sign in to comment.