diff options
author | Egor Tensin <egor@tensin.name> | 2025-09-10 09:38:09 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-09-10 09:38:09 +0200 |
commit | d712129502d802bf05581d5773488c576e05d04e (patch) | |
tree | 69ac5142de6b457d0625214fe7ab66717c97e579 /Makefile | |
parent | Makefile: unfreeze something (diff) | |
download | fucktipp.ing-d712129502d802bf05581d5773488c576e05d04e.tar.gz fucktipp.ing-d712129502d802bf05581d5773488c576e05d04e.zip |
Makefile: consistent ; usage
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -21,12 +21,12 @@ maintenance: ruby @git_status="$$( git status --porcelain=v1 )" && \ if [ -z "$$git_status" ]; then \ - true ; \ + true; \ elif [ "$$git_status" = ' M Gemfile.lock' ]; then \ git commit -am 'bump dependencies' && \ - git push -q ; \ + git push -q; \ else \ - echo ; \ + echo; \ echo '-----------------------------------------------------------------'; \ echo 'Error: unrecognized modifications in the repository'; \ echo '-----------------------------------------------------------------'; \ |