Fix deploy logs

This commit is contained in:
Tal Regev 2023-02-23 13:06:47 +02:00
parent 3d1645a8f4
commit 2863d8a500
No known key found for this signature in database
GPG Key ID: A421558E0F87AC82
1 changed files with 8 additions and 8 deletions

View File

@ -212,13 +212,13 @@ snap_list = [
logs_list = [
'config.log',
'3rdParty/wasm/vcpkg/buildtrees/*/*.log',
'3rdParty/linux/vcpkg/buildtrees/*/*.log',
'3rdParty/osx/vcpkg/buildtrees/*/*.log',
'3rdParty/android/vcpkg/buildtrees/*/*.log',
'3rdParty/mingw/vcpkg/buildtrees/*/*.log',
'3rdParty/Windows/vcpkg/buildtrees/*/*.log',
'parts/boinc/build/3rdParty/linux/vcpkg/buildtrees/*/*.log',
'3rdParty/wasm/vcpkg/buildtrees/*.log',
'3rdParty/linux/vcpkg/buildtrees/*.log',
'3rdParty/osx/vcpkg/buildtrees/*.log',
'3rdParty/android/vcpkg/buildtrees/*.log',
'3rdParty/mingw/vcpkg/buildtrees/*.log',
'3rdParty/Windows/vcpkg/buildtrees/*.log',
'parts/boinc/build/3rdParty/linux/vcpkg/buildtrees/*.log',
'android/BOINC/app/build/reports/',
'mac_build/xcodebuild_*.log',
]
@ -226,7 +226,7 @@ logs_list = [
def prepare_7z_archive(archive_name, target_directory, files_list):
os.makedirs(target_directory, exist_ok=True)
archive_path = os.path.join(target_directory, archive_name + '.7z')
command = f'7z a -t7z -mx=9 {archive_path} {" ".join(files_list)}'
command = f'7z a -t7z -r -mx=9 {archive_path} {" ".join(files_list)}'
os.system(command)
def help():