Skip to content

Commit e133a67

Browse files
authored
Update test_build.yml
1 parent 202394e commit e133a67

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test_build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919

2020
- name: Find tutorials
2121
run: |
22-
ls -R
2322
cd MDtutorials
24-
curl -L https://github.com/AdvancedPhotonSource/GSAS-II/raw/master/GSASII/tutorialIndex.py -o scripts/tutorialIndex.py
23+
ls
24+
for path in ./*; do
25+
[ -d "${path}" ] || continue # if not a directory, skip
26+
dirname="$(basename "${path}")"
27+
ls $dirname
28+
done
2529

0 commit comments

Comments
 (0)