aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <egor@tensin.name>2025-08-20 12:28:16 +0200
committerEgor Tensin <egor@tensin.name>2025-08-20 12:28:16 +0200
commit4183a3925226d7865e60b0af2fd2cc7606ac1e67 (patch)
tree881c1acbfc52dbbde1dc234e2cb71673bead7c0c
parentbump dependencies (diff)
downloadwireguard-config-4183a3925226d7865e60b0af2fd2cc7606ac1e67.tar.gz
wireguard-config-4183a3925226d7865e60b0af2fd2cc7606ac1e67.zip
Makefile: fix maintenance change filters
Diffstat (limited to '')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3cb547..5248eb3 100644
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,8 @@ maintenance: ruby
@git_status="$$( git status --porcelain=v1 )" && \
if [ -z "$$git_status" ]; then \
true ; \
- elif [ "$$git_status" = $$' M Gemfile.lock\n M package-lock.json' ] \
+ 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 ; \