From a73c99c0a6bdfcc787e86c3b7a5c606c7e4937c9 Mon Sep 17 00:00:00 2001 From: Smile Rex Date: Sat, 10 Jan 2026 23:21:03 +0300 Subject: [PATCH] update --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 988506a..d37a191 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ build: git add . - git commit -m "update" + @if git diff --cached --quiet; then \ + echo "No changes to commit"; \ + else \ + git commit -m "update"; \ + fi git push origin main