From d00cfdbd06f403ec75a05da5e83c40c0ec598681 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 1 Jul 2024 14:15:48 +0200 Subject: Makefile: add maintenance alias --- Makefile | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cee4d9e..f0eea16 100644 --- a/Makefile +++ b/Makefile @@ -18,15 +18,33 @@ deps: ruby npm: npm install -.PHONY: all-deps -all-deps: deps npm - jekyll := bundle exec jekyll .PHONY: build build: $(jekyll) build +.PHONY: maintenance +maintenance: ruby npm + bundle update + npm update + @$(MAKE) bundle + + @git_status="$$( git status --porcelain=v1 )" && \ + if [ -z "$$git_status" ]; then \ + true ; \ + elif [ "$$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 ; \ + else \ + echo ; \ + echo '-----------------------------------------------------------------'; \ + echo 'Error: unrecognized modifications in the repository'; \ + echo '-----------------------------------------------------------------'; \ + exit 1; \ + fi + .PHONY: serve serve: ifeq ($(LIVE_RELOAD),1) -- cgit v1.2.3