You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/09/29 07:28:44 UTC

svn commit: r1810058 - /sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh

Author: rombert
Date: Fri Sep 29 07:28:43 2017
New Revision: 1810058

URL: http://svn.apache.org/viewvc?rev=1810058&view=rev
Log:
SLING-3987 - move from Subversion to Git

Don't filter out projects with 'samples' in their path, just the ones
starting with 'sample'

Modified:
    sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh

Modified: sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh?rev=1810058&r1=1810057&r2=1810058&view=diff
==============================================================================
--- sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh (original)
+++ sling/trunk/tooling/scm/scripts/gen-repo-candidates.sh Fri Sep 29 07:28:43 2017
@@ -25,7 +25,7 @@ fi
 for pom in $(find . -name pom.xml  \
     | grep -v './tooling/ide' \
     | grep -v './performance' \
-    | grep -v './samples' \
+    | grep -v '^./samples' \
     | grep -v '/target/' \
     | grep -v '/archetype-resources/' \
     | grep -v '/src/test/resources/' \