Skip to content

Commit 7279c67

Browse files
committed
Improve installer archive naming (output of travis builds)
1 parent e19841f commit 7279c67

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

travis_build_script.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ def ignore_filter(folderPath, folderContents):
8383
call(['cp', '-r', staging_folder + '/.', osInstallData])
8484

8585
# RELATIVE PATHS MUST CONTAIN ./
86-
tar_gz(f'./{bootstrap_copy_folder}/higu_linux64_installer/', os.path.join(output_folder, 'seventh_mod_inst_linux.tar.gz'))
87-
zip(f'./{bootstrap_copy_folder}/higu_win_installer/', os.path.join(output_folder, 'seventh_mod_inst_windows_64bit.zip'))
88-
zip(f'./{bootstrap_copy_folder}/higu_win_installer_32/', os.path.join(output_folder, 'seventh_mod_inst_windows_32bit.zip'))
86+
tar_gz(f'./{bootstrap_copy_folder}/higu_linux64_installer/', os.path.join(output_folder, '07th-Mod.Installer.linux.tar.gz'))
87+
zip(f'./{bootstrap_copy_folder}/higu_win_installer/', os.path.join(output_folder, '07th-Mod.Installer.win64.zip'))
88+
zip(f'./{bootstrap_copy_folder}/higu_win_installer_32/', os.path.join(output_folder, '07th-Mod.Installer.win32.zip'))
8989

9090
# NOTE: mac zip doesn't need subdir - use '/*' to achieve this
91-
zip(f'./{bootstrap_copy_folder}/higu_mac_installer/*', os.path.join(output_folder, 'seventh_mod_inst_mac.zip'))
91+
zip(f'./{bootstrap_copy_folder}/higu_mac_installer/*', os.path.join(output_folder, '07th-Mod.Installer.mac.zip'))
9292

9393
try_remove_tree(staging_folder)
9494
try_remove_tree(bootstrap_copy_folder)

0 commit comments

Comments
 (0)