Skip to content

Commit

Permalink
Do not generate MD5 checksums
Browse files Browse the repository at this point in the history
Issue #4

Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Nov 24, 2016
1 parent 6c4f13b commit 7e08fef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/generate-missing-checksums
Expand Up @@ -5,7 +5,7 @@
cd /mnt/storage/files

find . -name '*.bz2' -o -name '*.gz' -o -name '*.7z' -o -name '*.xz' -o -name '*.zip' | while read filename ; do
for hash in sha1 md5 sha256 ; do
for hash in sha1 sha256 ; do
if [ ! -f $filename.$hash ] ; then
pushd `dirname $filename`
base=`basename $filename`
Expand Down

0 comments on commit 7e08fef

Please sign in to comment.