diff options
-rwxr-xr-x | lumebuild.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lumebuild.sh b/lumebuild.sh index 231dc88..a1f5abb 100755 --- a/lumebuild.sh +++ b/lumebuild.sh @@ -76,15 +76,16 @@ if [ $? -eq 0 ]; then egrep "^comments:" "$(ls -tr | tail -1)" | grep "}" if [ $? -eq 0 ]; then - build - exit 0 - else if [ "$FEDI_CMT" = "y" ]; then - fedi_posts - git_commit - build + fedi_posts + git_commit + build fi + else + build + exit 0 fi else exit 1 fi + |