Bug 364520 - [GIT] no repository for xwt
diff --git a/scripts/migration_update_maps.sh b/scripts/migration_update_maps.sh
index e3612cf..474ed55 100644
--- a/scripts/migration_update_maps.sh
+++ b/scripts/migration_update_maps.sh
@@ -4,14 +4,11 @@
#
-ROOT=/opt/pwebster/git/eclipse
-WS=/opt/pwebster/workspaces/gitMigration
+ROOT=/opt/pwebster/git/R42
+WS=/opt/pwebster/git/R42
REPOS='
-git://git.eclipse.org/gitroot/platform/eclipse.platform.runtime.git
-git://git.eclipse.org/gitroot/platform/eclipse.platform.ui.git
-git://git.eclipse.org/gitroot/e4/org.eclipse.e4.tools.git
-git://git.eclipse.org/gitroot/e4/org.eclipse.e4.ui.git
+git://git.eclipse.org/gitroot/e4/org.eclipse.e4.xwt.git
'
cd $ROOT
@@ -38,13 +35,14 @@
MODULES=$( ls -d $REPO_DIR/*/* )
for M in $MODULES; do
ID=$( basename $M )
- MAP=$( find $WS/org.eclipse.releng/maps -name "*.map" -exec grep -l "@${ID}=" {} \; )
+ #MAP=$( find $WS/org.eclipse.releng/maps -name "*.map" -exec grep -l "@${ID}=" {} \; )
+ #if [ ! -z "$MAP" ]; then
+ #update_map $REPO $M $ID $MAP
+ #fi
+ MAP=$( find $WS/org.eclipse.e4.releng -name "*.map" -exec grep -l "@${ID}=" {} \; )
if [ ! -z "$MAP" ]; then
update_map $REPO $M $ID $MAP
fi
- #MAP=$( find $WS/releng -name "*.map" -exec grep -l "@${ID}=" {} \; )
- #if [ ! -z "$MAP" ]; then
- # update_map $REPO $M $ID $MAP
- #fi
done
done
+