Skip to content

Commit 83a47b9

Browse files
committed
Fix if statement
1 parent 4142c31 commit 83a47b9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ push:
8282
@git diff -I'^"POT-Creation-Date: ' --numstat *.po **/*.po \
8383
| cut -f3 | xargs -r git add
8484
@git add $(git ls-files -o --exclude-standard *.po **/*.po) .tx/config
85-
@if [ -n "$(git diff --name-only --cached)" ]; then
86-
git commit -m $(MSG)
87-
git push
88-
else
89-
echo 'Nothing to commit'
85+
@if [ -n "$(git diff --name-only --cached)" ]; then \
86+
git commit -m $(MSG); \
87+
git push; \
88+
else \
89+
echo 'Nothing to commit'; \
9090
fi
9191

9292

0 commit comments

Comments
 (0)