blob: e92f7ca0ec867356365ca932846429f51795ca92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
if ! cnt=$(
npx playwright test
); then
{
printf '%s\n' \
'To: erich@eckner.net' \
'From: erich@'"$(hostname)" \
'Subject: playwright' \
'' \
'Die Milchtankstelle geht wieder:' \
'' \
"${cnt}"
} \
| sendmailadvanced -t
fi
|