From b617defc2a7c3b426d50374233727e7d9db82887 Mon Sep 17 00:00:00 2001 From: Maciej Dobrowolski Date: Tue, 5 Mar 2019 20:33:28 +0100 Subject: [PATCH] Fixed info message that was prompting wrong jvms option after installing new a jdk release --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index b60c086..ec24ce8 100644 --- a/main.go +++ b/main.go @@ -162,7 +162,7 @@ func commands() []cli.Command { // may consider keep the temp files here os.RemoveAll(jdktempfile) - fmt.Println("Installation complete. If you want to use this version, type\n\njvms use", v) + fmt.Println("Installation complete. If you want to use this version, type\n\njvms switch", v) } else { fmt.Println("Could not download JDK " + v + " executable.") }