Skip to content

Commit 33b778b

Browse files
committed
handle file list
1 parent f8cf657 commit 33b778b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/aws-service-sanity-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
# check if the files exists in the repository. The file list is in utils/doc-links.txt.
1616
run: |
1717
missing=0
18-
while read -r file; do
18+
while read -r file || [ -n "$file" ]; do
1919
if [ ! -f "$file" ]; then
2020
if [ $missing -eq 0 ]; then
2121
echo "❌ Missing files referenced in AWS documentation:"

0 commit comments

Comments
 (0)