Fix bug.
This commit is contained in:
parent
a03c42b592
commit
74776dce36
|
@ -2,11 +2,13 @@ $:.push File.expand_path("../lib", __FILE__)
|
||||||
|
|
||||||
# Maintain your gem's version:
|
# Maintain your gem's version:
|
||||||
require "personal_project/version"
|
require "personal_project/version"
|
||||||
app_path = File.expand_path(__dir__)
|
bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install'
|
||||||
template_path = ENV['PWD'] + '/app/templates'
|
if bundle_update_flag
|
||||||
all_template = Dir.glob(template_path+'/*/')
|
app_path = File.expand_path(__dir__)
|
||||||
puts 'copying module'
|
template_path = ENV['PWD'] + '/app/templates'
|
||||||
all_template.each do |folder|
|
all_template = Dir.glob(template_path+'/*/')
|
||||||
|
puts 'copying module'
|
||||||
|
all_template.each do |folder|
|
||||||
if folder.split('/')[-1] != 'mobile'
|
if folder.split('/')[-1] != 'mobile'
|
||||||
begin
|
begin
|
||||||
system ('cp -r '+ app_path + '/modules/ ' + folder)
|
system ('cp -r '+ app_path + '/modules/ ' + folder)
|
||||||
|
@ -14,6 +16,7 @@ all_template.each do |folder|
|
||||||
puts 'error copy'
|
puts 'error copy'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
# Describe your gem and declare its dependencies:
|
# Describe your gem and declare its dependencies:
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
|
|
Loading…
Reference in New Issue