This commit is contained in:
Alexey Milovidov 2023-01-09 01:56:25 +01:00
parent 93525229a9
commit e9d5bd7df3

View File

@ -89,7 +89,7 @@ def run_func_test(
def compress_stress_logs(output_path, files_prefix):
cmd = f"cd {output_path} && tar --zstd -zcf stress_run_logs.tar.zst {files_prefix}* && rm {files_prefix}*"
cmd = f"cd {output_path} && tar --zstd --create --file=stress_run_logs.tar.zst {files_prefix}* && rm {files_prefix}*"
check_output(cmd, shell=True)