From 1be4d766454a82fd6472ccc38941fcccfcc7a7b5 Mon Sep 17 00:00:00 2001 From: Alexis M Date: Sat, 4 Jan 2020 15:17:56 +0100 Subject: [PATCH] Update blog --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d2fed45..c5d210e 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ INSTALL_STAMP = $(VENV)/.install.stamp PYTHON=$(VENV)/bin/python PELICAN=$(VENV)/bin/pelican PIP=$(VENV)/bin/pip +GIT=LD_PRELOAD=/home/dan/dev/GitBSLR/gitbslr.so /usr/bin/git DEBUG ?= 0 ifeq ($(DEBUG), 1) @@ -52,6 +53,8 @@ publish: install github: publish ghp-import -n $(OUTPUTDIR) - git push origin gh-pages + $(GIT) push origin gh-pages +up: + $(GIT) add content/* && $(GIT) commit -am "Update blog" && $(GIT) push && make github .PHONY: html clean serve devserver publish