Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 84999a0

Browse files
committedJul 5, 2023
use grep not ack
1 parent a93b245 commit 84999a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎.github/workflows/verify.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ jobs:
7070
- uses: ./.github/actions/setup-java
7171
- name: Download latest Eclipse Dash
7272
run: |
73-
curl -L https://repo.eclipse.org/service/local/artifact/maven/redirect\?r\=dash-licenses\&g\=org.eclipse.dash\&a\=org.eclipse.dash.licenses\&v\=LATEST --output dash.jar
73+
curl -L https://repo.eclipse.org/service/local/artifact/maven/redirect\?r\=dash-licenses\&g\=org.eclipse.dash\&a\=org.eclipse.dash.licenses\&v\=LATEST --output dash.jar
7474
- name: Regenerate DEPENDENCIES
7575
run: |
76-
./gradlew allDependencies | ack -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" | sort | uniq | java -jar dash.jar - -summary DEPENDENCIES-gen
76+
./gradlew allDependencies | grep -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" | sort | uniq | java -jar dash.jar - -summary DEPENDENCIES-gen
7777
- name: Check for differences
7878
run: |
7979
diff DEPENDENCIES DEPENDENCIES-gen

0 commit comments

Comments
 (0)