1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-29 10:39:19 +02:00

[ticket/11876] Replace MD5 with SHA256.

PHPBB3-11876
This commit is contained in:
Andreas Fischer 2013-09-30 18:09:27 +02:00
parent da9756ba25
commit 0cf9d657b7

View File

@ -166,7 +166,7 @@
<target name="checksum-file">
<echo msg="Creating checksum file for ${absfilename}" />
<php function="dirname" returnProperty="dir"><param value="${absfilename}"/></php>
<exec dir="${dir}" command="md5sum ${filename} > ${filename}.md5" />
<exec dir="${dir}" command="sha256sum ${filename} > ${filename}.sha256" />
</target>
<target name="changelog" depends="prepare">