Skip to content

Commit

Permalink
Update opex_manifest_w_linking.rb
Browse files Browse the repository at this point in the history
minor tweak to directory skip
  • Loading branch information
jdshaw authored Oct 14, 2024
1 parent 1476ae7 commit 70c41db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opex_manifest_w_linking.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ def enumerate_files(files, base_dir)
# create an array of all subdirectories
def enumerate_dirs(dirs, base_dir)
dirs.each do |dir|
next if dir.to_s.sub(base_dir + '/','') == '.'
next if dir.to_s.sub(base_dir + '/','') == '.' || dir.to_s.end_with?('.')
next unless dir.to_s.match(@@files_to_skip).nil?
@@opex_folders << dir.to_s.sub(base_dir + '/','')
end
end

end

CreateOpexManifest.new
CreateOpexManifest.new

0 comments on commit 70c41db

Please sign in to comment.