summaryrefslogtreecommitdiff
path: root/reloadCheckDirty.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-08 03:13:09 -0600
committerJeff Carr <[email protected]>2025-01-08 03:13:09 -0600
commitb0fca659c57dd2cb6a88a74d1a349117a3908124 (patch)
treed1e43473858cead9872a4652aaaeed85dd2afd38 /reloadCheckDirty.go
parentebda2ea222ed9f1d348d5d3e0cffb9c9f9c0acec (diff)
fix the dumb names
Diffstat (limited to 'reloadCheckDirty.go')
-rw-r--r--reloadCheckDirty.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/reloadCheckDirty.go b/reloadCheckDirty.go
index 463397e..ae7b489 100644
--- a/reloadCheckDirty.go
+++ b/reloadCheckDirty.go
@@ -25,7 +25,7 @@ func (repo *Repo) IsDirty() bool {
// actually os.Exec('git')
func (repo *Repo) CheckDirty() bool {
cmd := []string{"git", "status", "--porcelain"}
- r := shell.PathRunLog(repo.FullPath, cmd, GITPB)
+ r := shell.PathRunLog(repo.FullPath, cmd, INFO)
if r.Error != nil {
log.Warn("CheckDirty() status cmd =", cmd)
out := strings.Join(r.Stdout, "\n")