0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00
penpot/backend/scripts/build-email-templates.sh
2020-06-16 15:40:13 +02:00

7 lines
142 B
Bash
Executable file

#!/usr/bin/env bash
for f in resources/emails-mjml/*/*.mjml
do
npx mjml $f -o `echo $f | sed -e "s/-mjml//" | sed -e "s/mjml/html/"`
done