diff options
| -rw-r--r-- | readme.md | 2 | ||||
| -rw-r--r-- | web/Makefile | 4 | 
2 files changed, 3 insertions, 3 deletions
| @@ -1622,7 +1622,7 @@ giving me the chance to contribute.  This software is released under a BSD-style license. See [LICENSE] for  more details. -Copyright © 2010-2017 Jose Antonio Ortega Ruiz +Copyright © 2010-2018 Jose Antonio Ortega Ruiz  Copyright © 2007-2010 Andrea Rossato diff --git a/web/Makefile b/web/Makefile index cb08fda..411f589 100644 --- a/web/Makefile +++ b/web/Makefile @@ -10,7 +10,7 @@ title = % xmobar - a minimalistic status bar  default: index.html  $(index): $(index.src) -	@sed -E "s/^\\[!\\[Build .+/$(title)/1" $(index.src) > $(index) +	@tail -n+3 $(index.src) | sed "1s/^/$(title)\n/" > $(index)  index.html: releases.html $(index) $(css)  	pandoc -f markdown -t html -c $(css) --toc -N -s \ @@ -24,7 +24,7 @@ upload-images:  	rsync -zav $(images) $(remote)  upload-pages: $(htmls) -	rsync -zav $(htmls) $(css) $(remote) +	scp $(htmls) $(css) $(remote)  upload: upload-images upload-pages | 
