Skip to content

Commit

Permalink
Fix for issue #51: do not assume all urls are keil.com
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesper Eskilson committed Nov 29, 2017
1 parent 7ff1ba0 commit eba63ff
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 eba63ff

Please sign in to comment.