Skip to content

Commit b86fc1a

Browse files
committed
bump
1 parent 117c1c3 commit b86fc1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/xmllinter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
id: find-xml
4848
run: |
4949
FILES=`find . -type f -iname "*.xml"`
50-
for item in ${FILES}[@]; do
50+
for item in ${FILES}; do
5151
echo "${item}"
5252
done
5353
@@ -58,6 +58,6 @@ jobs:
5858
- name: Lint XML
5959
run: |
6060
FILES=${{ steps.read-json.outputs.files }}
61-
for item in ${FILES}[@]; do
61+
for item in ${FILES}; do
6262
echo "${item}"
6363
done

0 commit comments

Comments
 (0)