You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func use(ctx *cli.Context) (err error) {
|
|
|
|
vname := ctx.Args().First()
|
|
|
|
if vname == "" {
|
|
|
|
return cli.ShowSubcommandHelp(ctx)
|
|
|
|
}
|
|
|
|
targetV := filepath.Join(versionsDir, vname)
|
|
|
|
|
|
|
|
if finfo, err := os.Stat(targetV); err != nil || !finfo.IsDir() {
|
|
|
|
return cli.Exit(fmt.Sprintf("[j] The %q version does not exist, please install it first.", vname), 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
_ = os.Remove(goroot)
|
|
|
|
|
|
|
|
if err = mkSymlink(targetV, goroot); err != nil {
|
|
|
|
return cli.Exit(errstring(err), 1)
|
|
|
|
}
|
|
|
|
if output, err := exec.Command(filepath.Join(goroot, "bin", "java"), "--version").Output(); err == nil {
|
|
|
|
fmt.Print(string(output))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|