You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2017/07/11 01:19:18 UTC

lucene-solr:branch_7x: fix addVersion to also bump up version for default test configset

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7x 83400bd81 -> db373e6b0


fix addVersion to also bump up version for default test configset


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/db373e6b
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/db373e6b
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/db373e6b

Branch: refs/heads/branch_7x
Commit: db373e6b01e670f758812c8701568e012b6961a4
Parents: 83400bd
Author: Anshum Gupta <an...@apache.org>
Authored: Mon Jul 10 18:15:03 2017 -0700
Committer: Anshum Gupta <an...@apache.org>
Committed: Mon Jul 10 18:17:26 2017 -0700

----------------------------------------------------------------------
 dev-tools/scripts/addVersion.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/db373e6b/dev-tools/scripts/addVersion.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/addVersion.py b/dev-tools/scripts/addVersion.py
index 5ce6bde..745cfd3 100644
--- a/dev-tools/scripts/addVersion.py
+++ b/dev-tools/scripts/addVersion.py
@@ -134,7 +134,7 @@ def update_example_solrconfigs(new_version):
   print('  updating example solrconfig.xml files')
   matcher = re.compile('<luceneMatchVersion>')
 
-  paths = ['solr/server/solr/configsets', 'solr/example']
+  paths = ['solr/server/solr/configsets', 'solr/example', 'solr/core/src/test-files/solr/configsets/_default']
   for path in paths:
     if not os.path.isdir(path):
       raise RuntimeError("Can't locate configset dir (layout change?) : " + path)