mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Don't leave the RSS / HTML pages empty if generation fails
This commit is contained in:
parent
701c1ae0b4
commit
7c8d821559
1 changed files with 2 additions and 2 deletions
|
@ -4,10 +4,10 @@ SHELL := /bin/bash
|
|||
all: index.html updates.rss
|
||||
|
||||
index.html: index.html.erb
|
||||
erb index.html.erb > index.html
|
||||
erb index.html.erb > index.html.tmp && mv index.html.tmp index.html
|
||||
|
||||
updates.rss: updates.rss.erb
|
||||
erb updates.rss.erb > updates.rss
|
||||
erb updates.rss.erb > updates.rss.tmp && mv updates.rss.tmp updates.rss
|
||||
|
||||
clean:
|
||||
-rm -v index.html updates.rss
|
||||
|
|
Loading…
Reference in a new issue