mirror of
https://github.com/etlegacy/Update-Installer.git
synced 2024-11-22 03:41:11 +00:00
Fix symlinks to directories in the input directory not being included in the <install> section of the generated file_list.xml
Only exclude plain directories from update packages, not symlinks to directories.
This commit is contained in:
parent
48084cfdb2
commit
6c9c8696fb
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ FileUtils.mkpath(output_dir)
|
|||
# get the details of each input file
|
||||
input_file_list = []
|
||||
Find.find(input_dir) do |path|
|
||||
next if (File.directory?(path))
|
||||
next if (File.directory?(path) && !File.symlink?(path))
|
||||
input_file_list << path
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue