summaryrefslogtreecommitdiff
path: root/reloadCheckDirty.go
diff options
context:
space:
mode:
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")