diff options
author | Egor Tensin <egor@tensin.name> | 2025-09-10 09:43:07 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-09-10 09:43:07 +0200 |
commit | a0d5211d2553c92d6d47d2587a4ed1e6a1b55bba (patch) | |
tree | a5f6449d4ff1e3ae4c4211f5a766eb7d49bbf2bf | |
parent | Makefile: unfreeze something (diff) | |
download | sorting-algorithms-a0d5211d2553c92d6d47d2587a4ed1e6a1b55bba.tar.gz sorting-algorithms-a0d5211d2553c92d6d47d2587a4ed1e6a1b55bba.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 '-----------------------------------------------------------------'; \ |