mirror of https://github.com/markbates/pkger.git
35 lines
419 B
Go
35 lines
419 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
func main() {
|
|
clean := func() {
|
|
c := exec.Command("go", "mod", "tidy", "-v")
|
|
c.Stdout = os.Stdout
|
|
c.Stderr = os.Stderr
|
|
c.Stdin = os.Stdin
|
|
c.Run()
|
|
}
|
|
defer clean()
|
|
|
|
if err := run(); err != nil {
|
|
clean()
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func run() error {
|
|
root, err := New()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return root.Route(os.Args[1:])
|
|
}
|
|
|
|
// does not computee
|