diff options
| author | Jeff Carr <[email protected]> | 2025-10-04 02:15:41 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-04 02:15:41 -0500 |
| commit | 307ae87dec1b929a831050194f60787adb0f99cf (patch) | |
| tree | fa1723b9d517dfc4577a25ad1ece108cb488f251 /doBuild.go | |
| parent | 6f7f211eff4ff7f788d8d2e249791daf5791330a (diff) | |
fix build
Diffstat (limited to 'doBuild.go')
| -rw-r--r-- | doBuild.go | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -3,14 +3,19 @@ package main -/* +import ( + "fmt" + + "go.wit.com/log" +) + func doBuild() error { v := []string{} if argv.Verbose { v = []string{"-v", "-x"} } - gopath := argv.Build + gopath := argv.Dev.Build repo := me.forge.FindByGoPath(gopath) if repo == nil { @@ -29,7 +34,7 @@ func doInstall() error { v = []string{"-v", "-x"} } - gopath := argv.Install + gopath := argv.Dev.Install repo := me.forge.FindByGoPath(gopath) if repo == nil { return fmt.Errorf("rep not found: %s", gopath) @@ -40,4 +45,3 @@ func doInstall() error { } return nil } -*/ |
