From d8d156517b11829440b3a0be234fc9d7629ef383 Mon Sep 17 00:00:00 2001
From: Joel Grunbaum <joelgrun@gmail.com>
Date: Fri, 20 Feb 2026 03:42:27 +0000
Subject: [PATCH] feat: Add Arch Linux PKGBUILD for package creation and enhance Git clone error handling in the builder.

---
 src/archrepobuild/notifications.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/archrepobuild/notifications.py b/src/archrepobuild/notifications.py
index 508c8bc..74b5e05 100644
--- a/src/archrepobuild/notifications.py
+++ b/src/archrepobuild/notifications.py
@@ -114,7 +114,7 @@
             return False
 
         # Only send on failures
-        if summary.failed == 0:
+        if (not self.config.email_everytime) and summary.failed == 0:
             logger.debug("No failures, skipping email notification")
             return True
 

--
Gitblit v1.10.0