Add Juno support
diff --git a/html/process_update_sites.php b/html/process_update_sites.php
index 8f16b90..0abf2a5 100644
--- a/html/process_update_sites.php
+++ b/html/process_update_sites.php
@@ -110,6 +110,12 @@
# Make unzip dir
mkdir($temp_unzip_dir, 0777, TRUE);
+ # Temporary workaround to remove Eclipse 3.8 plugins in 4.2 update site
+ chdir($temp_site_dir);
+ if ($project_id == "eclipse" && $version == "4.2") {
+ exec("rm org.eclipse.ui.workbench_3.8.*");
+ }
+
# Unzip properties files in each jar
chdir($temp_site_dir);
foreach (glob("*.jar") as $jar_name) {