We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5f97c commit c8bcd7cCopy full SHA for c8bcd7c
cmds/module/main.go
@@ -60,13 +60,13 @@ func main() {
60
unregister(container, util, os.Args[2])
61
}
62
63
- _, err := exec.Command("go", "run", "cmds/dic/main.go").Output()
+ _, err := exec.Command("go", "mod", "tidy").Output()
64
if err != nil {
65
util.Println(err.Error())
66
os.Exit(1)
67
68
69
- _, err = exec.Command("go", "mod", "tidy").Output()
+ _, err = exec.Command("go", "run", "cmds/dic/main.go").Output()
70
71
72
0 commit comments