fix error
This commit is contained in:
parent
c5807ddcfd
commit
22f3b9dafb
|
|
@ -1,16 +1,16 @@
|
||||||
zh_tw:
|
zh_tw:
|
||||||
|
|
||||||
text_marquee:
|
text_marquee:
|
||||||
all: All
|
all: 全部
|
||||||
new: New
|
new: 新增
|
||||||
marquee_name: Marquee Name
|
marquee_name: Marquee Name
|
||||||
categories: Category
|
categories: 類別
|
||||||
speed: 轉換速度
|
speed: 轉換速度
|
||||||
unit: 單位:毫秒
|
unit: 單位:毫秒
|
||||||
default_widget:
|
default_widget:
|
||||||
to_more: Read More
|
to_more: Read More
|
||||||
text_marquee_category_with_title: Category
|
text_marquee_category_with_title: 類別
|
||||||
text_marquee: Text Marquee
|
text_marquee: 跑馬燈
|
||||||
widget:
|
widget:
|
||||||
index: Text Marquee Widget
|
index: Text Marquee Widget
|
||||||
frontend:
|
frontend:
|
||||||
|
|
|
||||||
|
|
@ -2,16 +2,19 @@ $:.push File.expand_path("../lib", __FILE__)
|
||||||
|
|
||||||
# Maintain your gem's version:
|
# Maintain your gem's version:
|
||||||
require "text_marquee/version"
|
require "text_marquee/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