diff options
| author | jao <jao@gnu.org> | 2018-02-01 04:02:30 +0100 | 
|---|---|---|
| committer | jao <jao@gnu.org> | 2018-02-01 04:02:30 +0100 | 
| commit | 520ef2874fefbbd20368b6f8f6b3e605e824b64d (patch) | |
| tree | d543bfa43b5fa2932e6cbbbfab6b2ac51e36fb88 /web | |
| parent | 24a0e205a14bac2583c7a57ea261ea0ba24c6d9b (diff) | |
| download | xmobar-520ef2874fefbbd20368b6f8f6b3e605e824b64d.tar.gz xmobar-520ef2874fefbbd20368b6f8f6b3e605e824b64d.tar.bz2 | |
Doc nits
Diffstat (limited to 'web')
| -rw-r--r-- | web/Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| 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 | 
