Method: Licit::Licenser#fix_files

Defined in:
lib/licit/licenser.rb

#fix_filesObject



30
31
32
33
34
35
36
37
# File 'lib/licit/licenser.rb', line 30

def fix_files
  files.each do |file|
    target = File.join dir, file
    if not File.exists?(target)
      FileUtils.cp path_for(file), target
    end
  end
end