Skip to content

Commit 3098729

Browse files
committed
Fix bracket spacing for bash if statement
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>
1 parent f571e2e commit 3098729

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/scheduled_update.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
sha=${{ needs.update.outputs.sha }}
7070
if [ -z "${sha}" ]; then sha="HEAD"; fi
7171
for file in $(git diff ${tag}..${sha} --name-only); do
72-
if [ $file == "taginfo.json" ] || [ $file == "index.json" ] || [ $file == "package.json"] ; then
72+
if [ $file == "taginfo.json" ] || [ $file == "index.json" ] || [ $file == "package.json" ] ; then
7373
release_needed="true"
7474
break
7575
fi

0 commit comments

Comments
 (0)