You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ho...@apache.org on 2022/10/26 20:13:15 UTC

[solr] branch branch_9_1 updated: Fix file endings for smoke tester

This is an automated email from the ASF dual-hosted git repository.

houston pushed a commit to branch branch_9_1
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_1 by this push:
     new e86fb65275d Fix file endings for smoke tester
e86fb65275d is described below

commit e86fb65275d72f524d939d35935e27b3cc8d1466
Author: Houston Putman <ho...@apache.org>
AuthorDate: Wed Oct 26 16:11:59 2022 -0400

    Fix file endings for smoke tester
---
 dev-tools/scripts/smokeTestRelease.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py
index 5edf5d5ff99..ea1ccf07b5b 100755
--- a/dev-tools/scripts/smokeTestRelease.py
+++ b/dev-tools/scripts/smokeTestRelease.py
@@ -568,10 +568,10 @@ def verifyUnpacked(java, artifact, unpackPath, gitRevision, version, testArgs):
   in_solr_folder = []
   if isSrc:
     in_solr_folder.extend(os.listdir(os.path.join(unpackPath, 'solr')))
-    is_in_list(in_root_folder, ['LICENSE', 'NOTICE', 'README'])
-    is_in_list(in_solr_folder, ['CHANGES', 'README'])
+    is_in_list(in_root_folder, ['LICENSE.txt', 'NOTICE.txt', 'README.txt'])
+    is_in_list(in_solr_folder, ['CHANGES.txt', 'README.adoc'])
   else:
-    is_in_list(in_root_folder, ['LICENSE', 'NOTICE', 'README', 'CHANGES'])
+    is_in_list(in_root_folder, ['LICENSE.txt', 'NOTICE.txt', 'README.txt', 'CHANGES.txt'])
 
   if SOLR_NOTICE is None:
     SOLR_NOTICE = open('%s/NOTICE.txt' % unpackPath, encoding='UTF-8').read()