Skip to content

Commit

Permalink
Fix bash loop
Browse files Browse the repository at this point in the history
  • Loading branch information
takahirom committed Jul 6, 2024
1 parent 484b5c1 commit 86364c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/screenshot-comparison-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
} >> "$GITHUB_OUTPUT"
# Iterate over the files and create table rows
for file in "${$files[@]}"; do
for file in "${files[@]}"; do
# Get the file name and insert newlines every 20 characters
fileName=$(basename "$file" | sed -r 's/(.{20})/\1<br>/g')
urlPart="${BRANCH_NAME//#/%23}/${file//#/%23}"
Expand Down

0 comments on commit 86364c3

Please sign in to comment.