Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MINOR: [Java][CI] Fix grep for new nightlies versioning (#14166)
I've noticed that the latest Java nightlies where not uploaded https://nightlies.apache.org/arrow/java/org/apache/arrow/arrow-c-data/. I missed to update the grep on this PR: #14135 I have now tested locally the bash script to validate the repo structure will now be generated correctly: ``` repo └── org └── apache └── arrow ├── arrow-algorithm │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-algorithm-10.0.0-SNAPSHOT.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-algorithm-10.0.0-SNAPSHOT.pom │ ├── arrow-algorithm-10.0.0-SNAPSHOT-sources.jar │ └── arrow-algorithm-10.0.0-SNAPSHOT-tests.jar ├── arrow-avro │ ├── 10.0.0-SNAPSHOT │ │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar │ └── 2022-09-18 │ ├── arrow-avro-10.0.0-SNAPSHOT.jar │ ├── arrow-avro-10.0.0-SNAPSHOT-javadoc.jar │ ├── arrow-avro-10.0.0-SNAPSHOT.pom │ ├── arrow-avro-10.0.0-SNAPSHOT-sources.jar │ └── arrow-avro-10.0.0-SNAPSHOT-tests.jar ... ``` Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
- Loading branch information