make: convert: Command not found
makefile:102: recipe for target '****/dia-aws-simple-icons/.outputs/shapes/AWS_Simple_Icons_Compute_and_Networking_Amazon_EMR--.png' failed
Looking at makefile, I see
./convert -density 600 -resize 22x22 $(<) $(@)
I changed that to
./convert.rb -density 600 -resize 22x22 $(<) $(@)
Now that fails with
./convert.rb:5:in initialize'./convert.rb:5:ininitialize': No such file or directory @ rb_sysopen - -density (Errno::ENOENT)
from ./convert.rb:5:in new' from ./convert.rb:5:in'
Sounds like a case of some missing gem. Sounds like some missing gem?
I tried gem install convert and there isnt one.
make: convert: Command not found makefile:102: recipe for target '****/dia-aws-simple-icons/.outputs/shapes/AWS_Simple_Icons_Compute_and_Networking_Amazon_EMR--.png' failed
Looking at makefile, I see ./convert -density 600 -resize 22x22 $(<) $(@)
I changed that to ./convert.rb -density 600 -resize 22x22 $(<) $(@)
Now that fails with ./convert.rb:5:in'
initialize'./convert.rb:5:in
initialize': No such file or directory @ rb_sysopen - -density (Errno::ENOENT) from ./convert.rb:5:innew' from ./convert.rb:5:in
Sounds like a case of some missing gem. Sounds like some missing gem? I tried gem install convert and there isnt one.