diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
| commit | b0fca659c57dd2cb6a88a74d1a349117a3908124 (patch) | |
| tree | d1e43473858cead9872a4652aaaeed85dd2afd38 /reloadCheckDirty.go | |
| parent | ebda2ea222ed9f1d348d5d3e0cffb9c9f9c0acec (diff) | |
fix the dumb names
Diffstat (limited to 'reloadCheckDirty.go')
| -rw-r--r-- | reloadCheckDirty.go | 2 |
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") |
