fix error

This commit is contained in:
BOYA,CHIU 2021-07-16 17:56:38 +08:00
parent c5807ddcfd
commit 22f3b9dafb
2 changed files with 18 additions and 15 deletions

View File

@ -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:

View File

@ -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