Skip to content

Commit

Permalink
Build: remove extra blank line in digest files
Browse files Browse the repository at this point in the history
They are causing unnecessary warnings when validating the checksums e.g.
with `md5sum -c`
  • Loading branch information
dregad committed Apr 2, 2017
1 parent 3eae8e6 commit cfe30a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildrelease.py
Expand Up @@ -73,7 +73,7 @@ def generate_checksum(filename):
for method in ("md5", "sha1"):
checksum_cmd = "%ssum --binary " % method
checksum = os.popen(checksum_cmd + filename).read()
f.write("%s\n" % checksum)
f.write(checksum)
print " %s: %s" % (method, checksum.rstrip())
f.close()

Expand Down

0 comments on commit cfe30a2

Please sign in to comment.