Fix bug.
This commit is contained in:
parent
8586a54444
commit
689e08ea1a
|
@ -23,7 +23,7 @@ $( ".selectbox" ).ready(function() {
|
||||||
<a id="filter" style="" href="{{url}}">Clear</a>
|
<a id="filter" style="" href="{{url}}">Clear</a>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-hover table-striped projects-index">
|
<table class="table table-hover table-striped personal_conference-index">
|
||||||
<thead>
|
<thead>
|
||||||
<tr data-level="0" data-list="headers">
|
<tr data-level="0" data-list="headers">
|
||||||
<th class="col-md-{{col}}">{{head-title}}</th>
|
<th class="col-md-{{col}}">{{head-title}}</th>
|
||||||
|
|
|
@ -2,16 +2,19 @@ $:.push File.expand_path("../lib", __FILE__)
|
||||||
|
|
||||||
# Maintain your gem's version:
|
# Maintain your gem's version:
|
||||||
require "personal_conference/version"
|
require "personal_conference/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+'/*/')
|
||||||
if folder.split('/')[-1] != 'mobile'
|
puts 'copying module'
|
||||||
begin
|
all_template.each do |folder|
|
||||||
system ('cp -r '+ app_path + '/modules/ ' + folder)
|
if folder.split('/')[-1] != 'mobile'
|
||||||
rescue
|
begin
|
||||||
puts 'error copy'
|
system ('cp -r '+ app_path + '/modules/ ' + folder)
|
||||||
|
rescue
|
||||||
|
puts 'error copy'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue