rmuir commented on PR #14909: URL: https://github.com/apache/lucene/pull/14909#issuecomment-3044593844
@dweiss here would be my proposed mod (a bit hacky, but it should do the trick if we need) ```diff diff --git a/dev-tools/scripts/smokeTestRelease.py b/dev-tools/scripts/smokeTestRelease.py index fbcb0586cd2..17b816162fc 100755 --- a/dev-tools/scripts/smokeTestRelease.py +++ b/dev-tools/scripts/smokeTestRelease.py @@ -633,7 +633,7 @@ def verifyUnpacked(java: Any, artifact: str, unpackPath: str, gitRevision: str, if isSrc: print(" make sure no JARs/WARs in src dist...") - lines = os.popen("find . -name \\*.jar").readlines() + lines = os.popen("find . -name \\*.jar -not -name \\*-api.jar").readlines() if len(lines) != 0: print(" FAILED:") for line in lines: ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org