From 11f626db31ccdb056a5c8de7b4472161069405fe Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 24 Sep 2019 21:13:26 +0900 Subject: [PATCH] Move style below u/ --- Makefile | 14 ++++++++++++++ assets/{ => u}/static/style.css | 0 2 files changed, 14 insertions(+) create mode 100644 Makefile rename assets/{ => u}/static/style.css (100%) diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..22c5a5e --- /dev/null +++ b/Makefile @@ -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) diff --git a/assets/static/style.css b/assets/u/static/style.css similarity index 100% rename from assets/static/style.css rename to assets/u/static/style.css