diff options
Diffstat (limited to 'shell.go')
| -rw-r--r-- | shell.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -36,7 +36,7 @@ func (repo *Repo) RunQuiet(cmd []string) cmd.Status { // for now, even check cmd.Exit func (repo *Repo) strictRun(cmd []string) (bool, error) { - result := repo.Run(cmd) + result := repo.RunQuiet(cmd) if result.Error != nil { log.Warn("go mod init failed err:", result.Error) return false, result.Error |
