update png file used for starter page

This commit is contained in:
Kyle Drake 2016-02-28 13:36:17 -08:00
parent 055cbf7ab5
commit 0dcffb37d4
4 changed files with 5 additions and 5 deletions

View file

@ -412,10 +412,10 @@ class Site < Sequel::Model
FileUtils.cp template_file_path('style.css'), tmpfile.path
files << {filename: 'style.css', tempfile: tmpfile}
tmpfile = Tempfile.new 'cat.png'
tmpfile = Tempfile.new 'neocities.png'
tmpfile.close
FileUtils.cp template_file_path('cat.png'), tmpfile.path
files << {filename: 'cat.png', tempfile: tmpfile}
FileUtils.cp template_file_path('neocities.png'), tmpfile.path
files << {filename: 'neocities.png', tempfile: tmpfile}
store_files files, new_install: true
end