Skip to content

Commit 9401fd2

Browse files
authored
Merge pull request #342 from rawstacktech/fix/linux/android-support-installation
installation/linux: add `-t*` flag for 7z when unpacking packages
2 parents 23603bd + 068c3e5 commit 9401fd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/u3d/installer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def install_pkg(file, installation_path: nil)
285285
Dir.mktmpdir do |tmp_dir|
286286
UI.verbose "Working in tmp dir #{tmp_dir}"
287287

288-
command = "7z -aos -o#{tmp_dir.shellescape} e #{file.shellescape}"
288+
command = "7z -aos -t* -o#{tmp_dir.shellescape} e #{file.shellescape}"
289289
U3dCore::CommandExecutor.execute(command: command)
290290

291291
target_location = pkg_install_path(installation_path, "#{tmp_dir}/PackageInfo")

0 commit comments

Comments
 (0)