Переглянути джерело

build: Keep CNAME file when updating gh-pages branch

The CNAME file on the gh-pages branch is used to link the gh-pages
to the gitblit.com domain. So it needs to stay around when updating
the gh-pages branch with new documentation pages.
This is possible since Moxie 0.10.0 with a new `keep` sub-element.
pull/1452/head
Florian Zschocke 1 рік тому
джерело
коміт
e45fe06944
1 змінених файлів з 6 додано та 2 видалено
  1. 6
    2
      build.xml

+ 6
- 2
build.xml Переглянути файл

@@ -722,9 +722,13 @@
Update the gh-pages branch with the current site
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-->
<target name="updateGhPages">
<target name="updateGhPages" depends="prepare">
<!-- Build gh-pages branch -->
<mx:ghpages repositorydir="${basedir}" obliterate="true" />
<mx:ghpages repositorydir="${basedir}" obliterate="true">
<keep>
<file name="CNAME"/>
</keep>
</mx:ghpages>
</target>

Завантаження…
Відмінити
Зберегти