summaryrefslogtreecommitdiff
path: root/publish
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2025-02-28 00:07:45 -0600
committerZach van Rijn <me@zv.io>2025-02-28 00:07:45 -0600
commitfb433ddb56312c043bc1cfc52a2305b28c290b93 (patch)
treed10cbe28fea33e6edb4a30d7fcd2df2847269824 /publish
parent82197550d50f7d5dd5ba53a074000e8f387b83fb (diff)
downloadsite-ng-master.tar.gz
site-ng-master.tar.bz2
site-ng-master.tar.xz
site-ng-master.zip
Update asset generation (partially).HEADmaster
Diffstat (limited to 'publish')
-rwxr-xr-xpublish6
1 files changed, 4 insertions, 2 deletions
diff --git a/publish b/publish
index a3fe673..d65d2b3 100755
--- a/publish
+++ b/publish
@@ -37,7 +37,9 @@ fi # LOGO
if test ${HTML} -eq 1; then
#===============================================================
-docker run -v ${HERE}:${HERE} -e HERE=${HERE} -v ${TEMP}:${TEMP} -e TEMP=${TEMP} --rm -i alpine:3.17 <<'EOF'
+# FIXME: cannot update to 3.19 (or newer) else PSD images break;
+# missing PSD coder support? Alpine needs subpackge maybe??
+docker run -v ${HERE}:${HERE} -e HERE=${HERE} -v ${TEMP}:${TEMP} -e TEMP=${TEMP} --rm -i alpine:3.18 <<'EOF'
apk add findutils imagemagick;
#===============================================================
@@ -47,7 +49,7 @@ apk add findutils imagemagick;
find ${HERE} -type f -name "*.psd" | while read k; do
f="${k#*${HERE}}";
mkdir -p "${TEMP}${f%/*}";
- convert "${k}[0]" -strip "${TEMP}${f%*.psd}.jpg";
+ magick "${k}[0]" -strip "${TEMP}${f%*.psd}.jpg";
done
##