diff options
author | EuAndreh <eu@euandre.org> | 2020-12-29 16:12:27 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-29 16:12:27 -0300 |
commit | 15bb94e9d249b6f5d51168cd020968afd6fd0672 (patch) | |
tree | d9fb4e134a880450898704aa51239846a622a3f4 /_plugins/generate-favicon.rb | |
parent | favicon.svg: Aesthetically pleasing indentation (diff) | |
download | euandre.org-15bb94e9d249b6f5d51168cd020968afd6fd0672.tar.gz euandre.org-15bb94e9d249b6f5d51168cd020968afd6fd0672.tar.xz |
generate-favicon.rb: Print before generating
Diffstat (limited to '')
-rw-r--r-- | _plugins/generate-favicon.rb | 1 |
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 |