Move style below u/
This commit is contained in:
parent
02bb77010d
commit
11f626db31
2 changed files with 14 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
BUILDDIR=../ungleich-staticcms-build
|
||||||
|
DESTINATION=ungleichstatic@staticweb.ungleich.ch:/home/services/www/ungleichstatic/staticcms.ungleich.ch/www/
|
||||||
|
|
||||||
|
all: publish
|
||||||
|
|
||||||
|
publish: build permissions
|
||||||
|
rsync -av $(BUILDDIR)/ $(DESTINATION)
|
||||||
|
|
||||||
|
permissions: build
|
||||||
|
find $(BUILDDIR) -type f -exec chmod 0644 {} \;
|
||||||
|
find $(BUILDDIR) -type d -exec chmod 0755 {} \;
|
||||||
|
|
||||||
|
build:
|
||||||
|
lektor build -O $(BUILDDIR)
|
Loading…
Reference in a new issue