Skip to content

Commit 7275276

Browse files
committed
Fix find command
1 parent 466dd10 commit 7275276

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ert.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ jobs:
1515
- name: Run ERT tests
1616
run: |
1717
cd test
18-
emacs -Q -L .. -L . $(find .. -mindepth 1 -maxdepth 2 \( -name '.*.el' -prune -o -name '*.el' -type f -printf ' -l %p' \)) -l ert --batch -f ert-run-tests-batch-and-exit
18+
emacs -Q -L .. -L . \
19+
$(find .. -mindepth 1 -maxdepth 1 \
20+
\( -name '.*.el' -prune -o -name '*.el' -type f -printf ' -l %p' \)) \
21+
$(find . -mindepth 1 -maxdepth 1 \
22+
\( -name '.*.el' -prune -o -name '*.el' -type f -printf ' -l %p' \)) \
23+
-l ert --batch -f ert-run-tests-batch-and-exit

0 commit comments

Comments
 (0)