aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2024-07-01 14:17:23 +0200
committerEgor Tensin <egor@tensin.name>2024-07-01 14:26:04 +0200
commit3a7d2c3e72e0fbf097d2691df5e2c3cb19b61861 (patch)
tree0e96393ec2b3d68448359993ec1b2f33e8c33678 /Makefile
parentbump dependencies (diff)
downloadblog-3a7d2c3e72e0fbf097d2691df5e2c3cb19b61861.tar.gz
blog-3a7d2c3e72e0fbf097d2691df5e2c3cb19b61861.zip
Makefile: simplify the maintenance alias
It was copied from a more complicated project initially.
Diffstat (limited to '')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index d505b4b..ec491a2 100644
--- a/Makefile
+++ b/Makefile
@@ -17,12 +17,11 @@ deps: ruby
.PHONY: maintenance
maintenance: ruby
bundle update
+
@git_status="$$( git status --porcelain=v1 )" && \
- file_statuses="$$( echo "$$git_status" | cut -c 1-2 | sort -u )" && \
- file_names="$$( echo "$$git_status" | cut -c 4- | grep -o '[^/]*$$' | sort -u )" && \
if [ -z "$$git_status" ]; then \
true ; \
- elif [ "$$file_statuses $$file_names" = ' M Gemfile.lock' ]; then \
+ elif [ "$$git_status" = ' M Gemfile.lock' ]; then \
git commit -am 'bump dependencies' && \
git push -q ; \
else \