diff options
author | Egor Tensin <egor@tensin.name> | 2025-09-10 08:53:01 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-09-10 09:20:07 +0200 |
commit | 4ec8a8fab749ef143de5e3b6c8f58ffec86c9b34 (patch) | |
tree | 9142b2696bd1ab8196b2c08b5ec572ee5f6d3272 /Makefile | |
parent | add more things to .gitignore (diff) | |
download | egor-tensin.github.io-4ec8a8fab749ef143de5e3b6c8f58ffec86c9b34.tar.gz egor-tensin.github.io-4ec8a8fab749ef143de5e3b6c8f58ffec86c9b34.zip |
Makefile: consistent ; usage
Diffstat (limited to '')
-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 "$$git_status"; \ |