Skip to content

Commit ef9f4a9

Browse files
committed
Revert "Find configurations in install dir rather than configurations"
This reverts commit 99066ce.
1 parent 99066ce commit ef9f4a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/linux-eic-shell.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
- id: list-detector-configs
3535
run: |
3636
CONFIGS_CSV=$(
37-
ls -1 install/share/epic/ | sed 's/^/epic_/g' | xargs | sed 's/\.xml//g;s/ /,/g'
37+
ls -1 configurations | sed 's/^/epic_/g' | xargs | sed 's/\.yml//g;s/ /,/g'
3838
)
3939
CONFIGS_JSON=$((
4040
echo '['
41-
ls -1 install/share/epic/ | sed 's/^/epic_/g' | xargs | sed 's/\.xml//g;s/ /, /g' | xargs -n 1 echo | sed -r 's/^([^,]*)(,?)$/"\1"\2/'
41+
ls -1 configurations | sed 's/^/epic_/g' | xargs | sed 's/\.yml//g;s/ /, /g' | xargs -n 1 echo | sed -r 's/^([^,]*)(,?)$/"\1"\2/'
4242
echo ']'
4343
) | jq -c .)
4444
echo "configs_csv=${CONFIGS_CSV}" | tee -a $GITHUB_OUTPUT

0 commit comments

Comments
 (0)