summaryrefslogtreecommitdiff
path: root/shell.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-30 02:03:32 -0600
committerJeff Carr <[email protected]>2024-11-30 02:03:32 -0600
commit3de739288be1394cc1679c4391058173984e5873 (patch)
tree585f127eb88abcd6ab28c36e635dc3ae72150ccf /shell.go
parent5d28c6741ab043ae1deeca6bf4ff4c4d8ea4d455 (diff)
moving go.mod handling herev0.0.2
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