Browse Source
This adds a makefile to build and install the files. This can be used for an easier deployment on the page.master
2 changed files with 52 additions and 0 deletions
@ -0,0 +1,26 @@
|
||||
# install http files into this directory
|
||||
HTTPDIR=/tmp/zblog
|
||||
# give all files to this owner after copy
|
||||
OWNER != id -u
|
||||
# give all files to this group after copy
|
||||
GROUP != id -g
|
||||
# set this mode on all directories
|
||||
DIRMODE = 554
|
||||
# set this mode on all files
|
||||
FILEMODE = 444
|
||||
|
||||
.PHONY: clean install |
||||
|
||||
all: clean build |
||||
|
||||
build: |
||||
hugo
|
||||
|
||||
clean: |
||||
-rm -r public/*
|
||||
|
||||
install: build |
||||
cp -r public/ $(HTTPDIR)/
|
||||
find $(HTTPDIR) ! -path $(HTTPDIR) -type d -exec chmod $(DIRMODE) {} +
|
||||
find $(HTTPDIR) ! -path $(HTTPDIR) -type f -exec chmod $(FILEMODE) {} +
|
||||
chown -R $(OWNER):$(GROUP) $(HTTPDIR)/
|
Loading…
Reference in new issue