Skip to content

Commit d24317b

Browse files
committed
Fix logic bug.
I love having to make a commit for every one of these. >.<
1 parent 18a60b3 commit d24317b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Publish (maybe)
4040
run: |
4141
git status --porcelain
42-
if [ -n "$(git status --porcelain)" ]; then
42+
if [ -z "$(git status --porcelain)" ]; then
4343
echo "No changes found."
4444
exit
4545
fi

0 commit comments

Comments
 (0)