mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06:00
13 lines
265 B
Ruby
13 lines
265 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ProblemCheck::ImageMagick < ProblemCheck
|
|
self.priority = "low"
|
|
|
|
def call
|
|
return no_problem if !SiteSetting.create_thumbnails
|
|
return no_problem if Kernel.system("command -v magick >/dev/null;")
|
|
|
|
problem
|
|
end
|
|
end
|