mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-13 04:06:56 +00:00
e47ad42656
@html-to/text-cli was containing CVEs reported by the audit.
10 lines
261 B
Bash
Executable File
10 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Run mjml command to convert all mjml templates to html files
|
|
DIR_MAILS="../backend/core/templates/mail/html/"
|
|
|
|
if [ ! -d "${DIR_MAILS}" ]; then
|
|
mkdir -p "${DIR_MAILS}";
|
|
fi
|
|
mjml mjml/*.mjml -o "${DIR_MAILS}" --config.allowIncludes true;
|