You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gen-icon.sh
+12-9
Original file line number
Diff line number
Diff line change
@@ -69,26 +69,29 @@ fi
69
69
70
70
set -- "${args[@]}"
71
71
72
-
command -v inkscape> /dev/null;inkscape=$?
72
+
command -v resvg> /dev/null;resvg=$?
73
73
74
-
if [[ inkscape-ne 0 ]];then
75
-
echo$'Cannot find \'inkscape\' command. Make sure Inkscape is installed and reachable from the current working directory. See: https://inkscape.org'>&2
74
+
if [[ resvg-ne 0 ]];then
75
+
echo"Cannot find 'resvg' command. Make sure resvg is installed and resvg reachable from the current working directory. See: https://github.com/RazrFalcon/resvg">&2
76
76
exit 1
77
77
fi
78
78
79
79
command -v convert > /dev/null; magick=$?
80
80
81
81
if [[ magick -ne 0 ]];then
82
-
echo$'Cannot find \'convert\' command. Make sure ImageMagick is installed and reachable from the current working directory. See: https://www.imagemagick.org'>&2
82
+
echo"Cannot find 'convert' command. Make sure ImageMagick is installed and reachable from the current working directory. See: https://www.imagemagick.org">&2
0 commit comments