commit 3da07472994cc2c06a855c70e0a9fa18c467f86c
parent eb4d19edf5a17cc6bd8bd6816eeeaaa42a32a29c
Author: Andrew Laack <andrew@laack.co>
Date: Tue, 7 Apr 2026 12:23:57 -0500
Fix unbound issue
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/email/email-send.sh b/email/email-send.sh
@@ -4,7 +4,7 @@
# Reads message from stdin
# If there is no subject it sends "Message from {hostname}"
-set -euo pipefail
+set -eo pipefail
UUID=$(uuidgen)
HOSTNAME=$(hostnamectl | head -n 1 | awk '{print $3}')