Added support for vX.X.X and removed option to open prompt after install.

This commit is contained in:
Corey Butler
2016-07-01 20:03:55 -05:00
parent 7a4544317a
commit 2c6ed843eb
3 changed files with 5 additions and 6 deletions

View File

@@ -168,9 +168,11 @@ func install(version string, cpuarch string) {
version = reg.ReplaceAllString(re.FindString(content),"")
}
version = cleanVersion(version)
if CheckVersionExceedsLatest(version) {
fmt.Println("Node.js v"+version+" is not yet released or available.")
return
fmt.Println("Node.js v"+version+" is not yet released or available.")
return
}
if cpuarch == "64" && !web.IsNode64bitAvailable(version) {
@@ -311,8 +313,6 @@ func use(version string, cpuarch string) {
cpuarch = arch.Validate(cpuarch)
re := regexp.MustCompile("\\d+.\\d+.\\d+")
version = cleanVersion(version)
// Make sure the version is installed. If not, warn.