remove sha256 file from zipapp script

github displays the checksum for us now!
This commit is contained in:
anthony sottile
2025-11-22 16:06:27 -05:00
parent 3358a3b540
commit 8ea2b790d8

View File

@@ -107,9 +107,6 @@ def main() -> int:
shebang = '/usr/bin/env python3'
zipapp.create_archive(tmpdir, filename, interpreter=shebang)
with open(f'{filename}.sha256sum', 'w') as f:
subprocess.check_call(('sha256sum', filename), stdout=f)
return 0