Skip to content

Commit b606595

Browse files
committed
fix: go mod tidy -e error
1 parent b5fb59a commit b606595

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lang/golang/parser/parser.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ type dep struct {
147147

148148
func getDeps(dir string) (map[string]string, error) {
149149
// run go mod tidy first to ensure all dependencies are resolved
150-
cmd := exec.Command("go", "mod", "tidy", "-e")
150+
cmd := exec.Command("go", "mod", "tidy")
151151
cmd.Dir = dir
152152
output, err := cmd.CombinedOutput()
153153
if err != nil {

0 commit comments

Comments
 (0)