aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-09-30 18:09:27 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-09-30 18:09:27 +0200
commit0cf9d657b7c56e602248d5998a49b7d392b16d39 (patch)
treeb8b978e0e38da1175cc82c87179d0603c404698c /build
parentda9756ba2553abdcc87130ec892e589ded1c1256 (diff)
downloadforums-0cf9d657b7c56e602248d5998a49b7d392b16d39.tar
forums-0cf9d657b7c56e602248d5998a49b7d392b16d39.tar.gz
forums-0cf9d657b7c56e602248d5998a49b7d392b16d39.tar.bz2
forums-0cf9d657b7c56e602248d5998a49b7d392b16d39.tar.xz
forums-0cf9d657b7c56e602248d5998a49b7d392b16d39.zip
[ticket/11876] Replace MD5 with SHA256.
PHPBB3-11876
Diffstat (limited to 'build')
-rw-r--r--build/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index a861ebc205..f0962e67eb 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -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">