summaryrefslogtreecommitdiff
path: root/publish
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2021-07-13 11:14:00 -0500
committerZach van Rijn <me@zv.io>2021-07-13 11:14:00 -0500
commite977586b0e2a4c3bd1462bf2ec0573d315c37889 (patch)
tree6175dc83a978fb8088f1c306ee52474f1fb4eac0 /publish
parent008fa1ab1a0aa5dbb540894d7db51a2f6ddc7b8c (diff)
downloadsite-ng-e977586b0e2a4c3bd1462bf2ec0573d315c37889.tar.gz
site-ng-e977586b0e2a4c3bd1462bf2ec0573d315c37889.tar.bz2
site-ng-e977586b0e2a4c3bd1462bf2ec0573d315c37889.tar.xz
site-ng-e977586b0e2a4c3bd1462bf2ec0573d315c37889.zip
Enable 200px-height logo.
Diffstat (limited to 'publish')
-rwxr-xr-xpublish7
1 files changed, 4 insertions, 3 deletions
diff --git a/publish b/publish
index 0445f53..9f1df5f 100755
--- a/publish
+++ b/publish
@@ -23,14 +23,15 @@ done
##
# .psd --> .png ONLY in '../assets/'
#
-# x28 is GitLab
-# x54 is Website
+# x28 is GitLab
+# x54 is Website
+# x200 is SPI project page
#
find ${HERE}/../assets -type f -name "*.psd" | while read k; do
f="${k#*${HERE}}";
mkdir -p "${HTML}${f%/*}";
convert "${k}[0]" "${HTML}${f%*.psd}.png";
- for r in x28 x54; do
+ for r in x28 x54 x200; do
convert -resize ${r} "${k}[0]" "${HTML}${f%*.psd}_${r}.png";
done
done