diff options
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml index f0962e67eb..018f7b91a2 100644 --- a/build/build.xml +++ b/build/build.xml @@ -169,6 +169,18 @@ <exec dir="${dir}" command="sha256sum ${filename} > ${filename}.sha256" /> </target> + <target name="announcement" depends="prepare"> + <echo msg="Writing download links and checksums for email announcement to save/announcement_email_${newversion}.txt" /> + <exec dir="build" escape="false" + command="php -f build_announcement.php email '${newversion}' 'new_version/release_files' sha256 > + save/announcement_email_${newversion}.txt" /> + + <echo msg="Writing download links and checksums for bbcode announcement to save/announcement_bbcode_${newversion}.txt" /> + <exec dir="build" escape="false" + command="php -f build_announcement.php bbcode '${newversion}' 'new_version/release_files' sha256 > + save/announcement_bbcode_${newversion}.txt" /> + </target> + <target name="changelog" depends="prepare"> <exec dir="build" escape="false" command="php -f build_changelog.php '${newversion}' > |