summaryrefslogtreecommitdiff
path: root/make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'make.sh')
-rwxr-xr-xmake.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/make.sh b/make.sh
index b73d68b..2af4d55 100755
--- a/make.sh
+++ b/make.sh
@@ -27,8 +27,10 @@ make_favicon() {
render_icon "${input}" 192 "${directory}/192x192.png"
render_icon "${input}" 256 "${directory}/256x256.png"
+ output="${directory}/favicon.ico"
+
printf "combining renders in \"%s\" to \"%s\"\n" "${directory}" "${output}"
- icotool -co "favicon.ico" "${directory}/"*".png"
+ icotool -co "${output}" "${directory}/"*".png"
render_icon "${input}" 180 "apple-touch-icon.png"
}