From 10a230176cea59a8f5bfcf6a156fd7edfb6efbcc Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Mon, 15 Jun 2015 17:51:03 -0400 Subject: [PATCH] Update sync_settings.sh for the new directory layout Change-Id: I4a80162f3cb196608df9bfce5fa84bba3431f2d9 Signed-off-by: Alexandre Montplaisir --- sync_settings.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sync_settings.sh b/sync_settings.sh index 4ed97c3190..7d9bc8fa2f 100755 --- a/sync_settings.sh +++ b/sync_settings.sh @@ -15,14 +15,14 @@ # (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 -- 2.34.1