remove 32/64-bit checks, add x86-64 executables

This commit is contained in:
Connor Olding 2018-08-11 04:53:43 +02:00
parent 124e6d9f2c
commit 66f196db6b
3 changed files with 0 additions and 1 deletions

BIN
compressor Normal file

Binary file not shown.

BIN
compressor.exe Normal file

Binary file not shown.

1
fs.py
View File

@ -51,7 +51,6 @@ def compress_fast(data, mode="best"):
from platform import machine
exe = "compressor"
exe += "64" if machine().endswith("64") else "32"
exe += (".exe" if os.name == "nt" else "")
exe = os.path.join(heresay, exe)
assert os.path.isfile(exe), "missing executable: " + exe