remove print from config when reading commit hash

This commit is contained in:
Lera Elvoé 2025-05-27 17:45:57 +03:00
parent d1e29822ac
commit 90cacad449
Signed by: yagich
SSH Key Fingerprint: SHA256:6xjGb6uA7lAVcULa7byPEN//rQ0wPoG+UzYVMfZnbvc

View File

@ -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