Skip to content

Commit

Permalink
Small fix for TouchBundles to properly touch PDE
Browse files Browse the repository at this point in the history
See #1686
  • Loading branch information
iloveeclipse committed Dec 22, 2023
1 parent 5fe65a7 commit ccc1062
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ public static void main(String[] args) throws Exception {
Map<String, File> gitDirMap = Arrays.asList(gitDirs).stream().filter(File::isDirectory)
.collect(Collectors.toMap(File::getName, f -> f));

if (gitDirMap.containsKey("eclipse.pde")) {
gitDirMap.put("eclipse.pde.ui", gitDirMap.get("eclipse.pde"));
if (gitDirMap.containsKey("eclipse.pde.ui")) {
gitDirMap.put("eclipse.pde", gitDirMap.get("eclipse.pde.ui"));
}
if (gitDirMap.containsKey("eclipse.platform.releng.aggregator")) {
if (gitDirMap.containsKey("eclipse.platform.releng.aggregator")) {
gitDirMap.put("eclipse.platform.releng",
new File(gitDirMap.get("eclipse.platform.releng.aggregator"), "eclipse.platform.releng"));
}
Expand Down

0 comments on commit ccc1062

Please sign in to comment.