make go.*

This commit is contained in:
Jeff Carr 2024-03-08 14:41:22 -06:00
parent 89eb940a9e
commit 581a4d96fc
2 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,8 @@
VERSION = $(shell git describe --tags) VERSION = $(shell git describe --tags)
run: build run: build
./go-clone --work github.com/rclone/rclone @#./go-clone --work github.com/rclone/rclone
./go-clone --work go.wit.com/apps/basicwindow
vet: vet:
@GO111MODULE=off go vet @GO111MODULE=off go vet

View File

@ -43,7 +43,12 @@ func main() {
rv = repolist.AutotypistView(b) rv = repolist.AutotypistView(b)
os.Setenv("REPO_AUTO_CLONE", "true") os.Setenv("REPO_AUTO_CLONE", "true")
rv.NewRepo(myargs.Repo) newr, err := rv.NewRepo(myargs.Repo)
if err != nil {
log.Info("could not download:", err)
os.Exit(-1)
}
newr.Status.MakeRedomod()
// rv.NewRepo("go.wit.com/apps/helloworld") // rv.NewRepo("go.wit.com/apps/helloworld")