forgot to add back -l 9

This commit is contained in:
2022-09-15 00:18:30 +02:00
parent e7aaf1491a
commit 540a91d1ba

View File

@@ -36,7 +36,7 @@ for config in configs
config_results = [] config_results = []
results << config_results results << config_results
for file in files for file in files
if system(*['cargo', 'run', '--release', 'pack', config[1], file, '/tmp/out.upk'].flatten) && if system(*['cargo', 'run', '--release', 'pack', '-l', '9', config[1], file, '/tmp/out.upk'].flatten) &&
system(*['cargo', 'run', '--release', 'unpack', config[1], '/tmp/out.upk', '/tmp/out.bin'].flatten) && system(*['cargo', 'run', '--release', 'unpack', config[1], '/tmp/out.upk', '/tmp/out.bin'].flatten) &&
File.read(file) == File.read('/tmp/out.bin') File.read(file) == File.read('/tmp/out.bin')
size = File.size('/tmp/out.upk') size = File.size('/tmp/out.upk')