Update sync_settings.sh for the new directory layout
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Mon, 15 Jun 2015 21:51:03 +0000 (17:51 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Tue, 16 Jun 2015 18:43:17 +0000 (14:43 -0400)
Change-Id: I4a80162f3cb196608df9bfce5fa84bba3431f2d9
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
sync_settings.sh

index 4ed97c319055b27a283e9970e6747c43ff98ade4..7d9bc8fa2f26a4f0d81997e322e9b66dddc4df21 100755 (executable)
 # (by copying the contents of tmf.core's settings)
 
 # Plugins from which we will copy the settings
-RUNTIME_REFERENCE="org.eclipse.tracecompass.tmf.core"
-TEST_REFERENCE="org.eclipse.tracecompass.tmf.core.tests"
+RUNTIME_REFERENCE="tmf/org.eclipse.tracecompass.tmf.core"
+TEST_REFERENCE="tmf/org.eclipse.tracecompass.tmf.core.tests"
 
 RUNTIME_FILES=$RUNTIME_REFERENCE/.settings/*.prefs
 TEST_FILES=$TEST_REFERENCE/.settings/*.prefs
 
 # Runtime plugins
-for DIR in *.core *.ui org.eclipse.tracecompass.examples
+for DIR in */*.core */*.ui doc/org.eclipse.tracecompass.examples
 do
   # Skip non-directories
   if [ ! -d $DIR ]; then
@@ -42,7 +42,7 @@ done
 
 
 # Test plugins
-for DIR in *.tests *.alltests
+for DIR in */*.tests */*.alltests
 do
   # Skip non-directories
   if [ ! -d $DIR ]; then
This page took 0.029962 seconds and 5 git commands to generate.