Update personal_book.gemspec

This commit is contained in:
chiu 2019-08-21 17:21:46 +08:00
parent 46bf1679b2
commit 52413762a3
1 changed files with 1 additions and 1 deletions

View File

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