From 90cacad449cfbaa518b39969ee1b93bd6f0995cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lera=20Elvo=C3=A9?= Date: Tue, 27 May 2025 17:45:57 +0300 Subject: [PATCH] remove print from config when reading commit hash --- config.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/config.lua b/config.lua index a05c5d5..debe4d7 100644 --- a/config.lua +++ b/config.lua @@ -4,7 +4,6 @@ local secrets = require("secrets.secrets") local commit = nil local f = io.open(".git/refs/heads/main", "r") if f then - print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!read commit") commit = f:read(8) f:close() end