mirror of
https://github.com/penpot/penpot.git
synced 2025-01-06 14:50:20 -05:00
7 lines
142 B
Bash
Executable file
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
|
|
|