Feature/gitops #37

Merged
niko merged 23 commits from feature/gitops into main 2026-06-22 10:37:15 +03:00
Showing only changes of commit 21a6ef7ab1 - Show all commits
@@ -74,7 +74,7 @@ function requestCount() {
}
function gitCalls() {
const out = bash(`cat "${GIT_CALLS_FILE:-/dev/null}" 2>/dev/null || echo ""`).stdout;
const out = bash(`cat "${GIT_CALLS_FILE || '/dev/null'}" 2>/dev/null || echo ""`).stdout;
return out.split('\n').filter(l => l.length > 0);
}