diff options
author | Zach van Rijn <me@zv.io> | 2021-07-13 11:14:00 -0500 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2021-07-13 11:14:00 -0500 |
commit | e977586b0e2a4c3bd1462bf2ec0573d315c37889 (patch) | |
tree | 6175dc83a978fb8088f1c306ee52474f1fb4eac0 /publish | |
parent | 008fa1ab1a0aa5dbb540894d7db51a2f6ddc7b8c (diff) | |
download | site-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-x | publish | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |