mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-22 11:51:09 +00:00
Fix the package name of the original updater not being used when inserting a subtitute updater via the -u command line flag
This commit is contained in:
parent
6c9c8696fb
commit
e835036e41
1 changed files with 4 additions and 6 deletions
|
@ -119,7 +119,6 @@ class UpdateScriptGenerator
|
||||||
# for the updater binary, use the possibly substituted
|
# for the updater binary, use the possibly substituted
|
||||||
# version in the output directory
|
# version in the output directory
|
||||||
path = "#{output_dir}/#{@config.updater_binary}"
|
path = "#{output_dir}/#{@config.updater_binary}"
|
||||||
file.path = strip_prefix(path,"#{output_dir}/")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
file.is_main_binary = (file.path == package_config.main_binary)
|
file.is_main_binary = (file.path == package_config.main_binary)
|
||||||
|
@ -130,11 +129,10 @@ class UpdateScriptGenerator
|
||||||
file.hash = file_sha1(path)
|
file.hash = file_sha1(path)
|
||||||
file.permissions = get_file_permissions(path)
|
file.permissions = get_file_permissions(path)
|
||||||
file.size = File.size(path)
|
file.size = File.size(path)
|
||||||
package_file_map.each do |package,files|
|
file.package = @config.package_for_file(file.path)
|
||||||
if files.include?(path)
|
|
||||||
file.package = package
|
if (!file.package)
|
||||||
break
|
raise "Could not find package for file #{file.path}"
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue