Sfoglia il codice sorgente

fix index builds

new-build-system
Jan Lehnardt 14 anni fa
parent
commit
d29d2cb653
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile Vedi File

@@ -41,7 +41,7 @@ build-wrappers:
# TODO: add $(version)/index.html page (from template) # TODO: add $(version)/index.html page (from template)
# update index.html to point to $(vesion) # update index.html to point to $(vesion)
cat index.html.pre > index.html cat index.html.pre > index.html
for release in `ls -p | grep '/'`; do echo "<li><a href=\"${release}/\">${release}</a></li>" >> index.html; done
for release in `ls -p | grep '/'`; do echo "<li><a href=\"$release/\">$release</a></li>" >> index.html; done
cat index.html.post >> index.html cat index.html.post >> index.html
git add $(version) git add $(version)
git commit -m 'Release $(version)' index.html $(version) git commit -m 'Release $(version)' index.html $(version)


Loading…
Annulla
Salva