diff options
author | Egor Tensin <egor@tensin.name> | 2025-09-10 09:32:46 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-09-10 09:32:46 +0200 |
commit | 44d554f467d48335d230c92ea3c6f98c65d27cd4 (patch) | |
tree | 928a97ca88cf13fffa791a78a52f92bdc7e1daf9 | |
parent | Makefile: unfreeze something (diff) | |
download | wireguard-config-44d554f467d48335d230c92ea3c6f98c65d27cd4.tar.gz wireguard-config-44d554f467d48335d230c92ea3c6f98c65d27cd4.zip |
Makefile: consistent ; usage
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,14 +31,14 @@ maintenance: ruby @git_status="$$( git status --porcelain=v1 )" && \ if [ -z "$$git_status" ]; then \ - true ; \ + true; \ elif [ "$$git_status" = ' M Gemfile.lock' ] \ || [ "$$git_status" = $$' M Gemfile.lock\n M package-lock.json' ] \ || [ "$$git_status" = $$' M Gemfile.lock\n M package-lock.json\n M assets/js/bundle.js' ]; then \ git commit -am 'bump dependencies' && \ - git push -q ; \ + git push -q; \ else \ - echo ; \ + echo; \ echo '-----------------------------------------------------------------'; \ echo 'Error: unrecognized modifications in the repository'; \ echo '-----------------------------------------------------------------'; \ |