summaryrefslogtreecommitdiff
path: root/publish
diff options
context:
space:
mode:
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
##