aboutsummaryrefslogtreecommitdiff
path: root/_plugins/generate-favicon.rb
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_plugins/generate-favicon.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/_plugins/generate-favicon.rb b/_plugins/generate-favicon.rb
index 11c038a..c4e9c85 100644
--- a/_plugins/generate-favicon.rb
+++ b/_plugins/generate-favicon.rb
@@ -9,6 +9,7 @@ module Jekyll
svg = 'static/favicon.svg'
png = 'static/favicon.png'
unless File.exist? png then
+ puts "Missing '#{png}', generating..."
puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} #{svg}`
end
end