aboutsummaryrefslogtreecommitdiff
path: root/_plugins/linter.rb
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-12-28 18:20:48 -0300
committerEuAndreh <eu@euandre.org>2020-12-28 18:20:48 -0300
commitb9c0f8368f318c4bdd6ca737fd542a04f30fde5f (patch)
treefde871433ffc7c207d8f5ba9ffbcfd8fda475188 /_plugins/linter.rb
parentRemove favicon.ico (diff)
downloadeuandre.org-b9c0f8368f318c4bdd6ca737fd542a04f30fde5f.tar.gz
euandre.org-b9c0f8368f318c4bdd6ca737fd542a04f30fde5f.tar.xz
Use PNG favicon on Atom feed and audio file metadata
Diffstat (limited to '_plugins/linter.rb')
-rw-r--r--_plugins/linter.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/_plugins/linter.rb b/_plugins/linter.rb
index f9167e1..f986191 100644
--- a/_plugins/linter.rb
+++ b/_plugins/linter.rb
@@ -172,11 +172,11 @@ module Jekyll
end
end
- check_cover_cmd = "metaflac #{file} --export-picture-to=- | diff - static/favicon.svg"
+ check_cover_cmd = "metaflac #{file} --export-picture-to=- | diff - static/favicon.png"
`#{check_cover_cmd}`
unless $?.success? then
- add_cover_cmd = "metaflac #{file} --import-picture-from='3|image/svg+xml||420x420x24|static/favicon.svg'"
- raise "Cover art from '#{file}' doesn't match 'static/favicon.svg'.\nFix it with:\n\n#{add_cover_cmd}\n\nCheck with:\n #{check_cover_cmd}"
+ add_cover_cmd = "metaflac #{file} --import-picture-from=static/favicon.png"
+ raise "Cover art from '#{file}' doesn't match 'static/favicon.png'.\nFix it with:\n\n#{add_cover_cmd}\n\nCheck with:\n #{check_cover_cmd}"
end
elsif name == 'screencasts' then
stdout = `mediainfo #{file} | awk -F: '/^Movie name/ { print $2 }'`.strip