remove 32/64-bit checks, add x86-64 executables
This commit is contained in:
parent
124e6d9f2c
commit
66f196db6b
3 changed files with 0 additions and 1 deletions
BIN
compressor
Normal file
BIN
compressor
Normal file
Binary file not shown.
BIN
compressor.exe
Normal file
BIN
compressor.exe
Normal file
Binary file not shown.
1
fs.py
1
fs.py
|
@ -51,7 +51,6 @@ def compress_fast(data, mode="best"):
|
||||||
from platform import machine
|
from platform import machine
|
||||||
|
|
||||||
exe = "compressor"
|
exe = "compressor"
|
||||||
exe += "64" if machine().endswith("64") else "32"
|
|
||||||
exe += (".exe" if os.name == "nt" else "")
|
exe += (".exe" if os.name == "nt" else "")
|
||||||
exe = os.path.join(heresay, exe)
|
exe = os.path.join(heresay, exe)
|
||||||
assert os.path.isfile(exe), "missing executable: " + exe
|
assert os.path.isfile(exe), "missing executable: " + exe
|
||||||
|
|
Loading…
Add table
Reference in a new issue