Update personal_patent.gemspec

This commit is contained in:
chiu 2019-08-21 17:25:58 +08:00
parent 1abd2fc10d
commit e74174d631
1 changed files with 6 additions and 4 deletions

View File

@ -7,10 +7,12 @@ template_path = ENV['PWD'] + '/app/templates'
all_template = Dir.glob(template_path+'/*/')
puts 'copying module'
all_template.each do |folder|
begin
system ('cp -r '+ app_path + '/modules/ ' + folder)
rescue
puts 'error copy'
if folder.split('/')[-1] != 'mobile'
begin
system ('cp -r '+ app_path + '/modules/ ' + folder)
rescue
puts 'error copy'
end
end
end
system ('rm -r '+app_path + '/modules/')