fix adding text error occur on sometimes that will overwrite the whole file

This commit is contained in:
chiu 2020-03-08 14:52:29 +08:00
parent c4fdcd7b06
commit 8b05282dbe
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ all_template.each do |folder|
check_texts.each do |check_text|
if !texts.include?(check_text)
puts "editing #{folder}assets/stylesheets/template/base/_variables.scss"
File.open(filename, 'a') do |file|
file.puts check_text
File.open(filename, 'w') do |file|
file.write(texts + check_text)
end
end
end