summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
Diffstat (limited to 'shell.go')
-rw-r--r--shell.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.go b/shell.go
index e7ed273..7670329 100644
--- a/shell.go
+++ b/shell.go
@@ -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