From 1c421d1fc92ab25afc2e2f0517bd7c269eb54ce1 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 11 Jul 2015 10:19:00 +0300 Subject: [PATCH] Installation in README. Removed publish in Makefile. --- Makefile | 11 ++++------- README.rst | 2 ++ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 0396c5d..425417e 100644 --- a/Makefile +++ b/Makefile @@ -8,19 +8,16 @@ html: $(RESUME) pandoc -s -t html5 --email-obfuscation=none -c resume.css $(RESUME) -o resume.html pdf: $(RESUME) - pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.pdf + pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.pdf docx: $(RESUME) html - pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.docx + pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.docx odt: $(RESUME) html - pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.odt + pandoc $(RESUME) -c $(CSS) -o resume.odt clean: rm resume.html resume.pdf resume.docx resume.odt publish: all - rsync -az --exclude="$(RESUME)" --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume - -push: - git push --all gitweb + rsync -az --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume diff --git a/README.rst b/README.rst index efe4498..27759aa 100644 --- a/README.rst +++ b/README.rst @@ -3,3 +3,5 @@ Nimrod Adar's resume My resume (in ReStructuredText) and infrastructure for creating PDF, HTML, ODT and Microsoft Word docx versions. Also upload to my web server. + +To use install pandoc and rsync (for publishing). -- GitLab