blob: 9fdf2596ecc5e3a3e411dadc473b6feb86fd8522 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
cd "$(dirname "$(readlink -e "$0")")"
if ! cnt=$(su erich -c "npx playwright test"); then
printf '%s\n' \
'To: erich@eckner.net' \
'From: erich@'"$(hostname)" \
'Subject: playwright' \
'' \
'Die Milchtankstelle hat neue Nachrichten:' \
'' \
"${cnt}" \
| sendmailadvanced -t
fi
|