Skip to content

Commit

Permalink
Merge pull request #597 from annaibm/removeXL
Browse files Browse the repository at this point in the history
Removed _xl for mac platform in TRSS query
  • Loading branch information
karianna committed Aug 13, 2024
2 parents 9975ca9 + fd80ed5 commit 376cce5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/org/testKitGen/TestDivider.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,11 @@ private Map<String, Integer> getDataFromTRSS() {
String group = getGroup();
String level = getLevel();
Map<String, Integer> map = new HashMap<String, Integer>();
String URL = constructURL(impl, plat, group, level);
String osName = System.getProperty("os.name").toLowerCase();
if (osName.contains("mac")) {
plat = plat.replace("_xl", "");
}
String URL = constructURL(impl, plat, group, level);
String command;

if (osName.contains("win")) {
Expand Down

0 comments on commit 376cce5

Please sign in to comment.