Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
ystyle committed Nov 8, 2015
1 parent 85a5508 commit 8880812
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 23 deletions.
Binary file modified dist/0.0.1/jvms-noinstall.zip
Binary file not shown.
Binary file modified dist/0.0.1/jvms-setup.zip
Binary file not shown.
Binary file modified dist/images/installlatest.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 1 addition & 23 deletions src/jvms.go
Original file line number Diff line number Diff line change
Expand Up @@ -400,29 +400,7 @@ func list(listtype string) {
fmt.Println("No installations recognized.")
}
} else {
_, stable, unstable := node.GetAvailable()

releases := 15

fmt.Println("\nShowing the " + strconv.Itoa(releases) + " latest available releases.\n")

fmt.Println(" STABLE | UNSTABLE ")
fmt.Println(" ---------------------------")

for i := 0; i < releases; i++ {
str := "v" + stable[i]
for ii := 10 - len(str); ii > 0; ii-- {
str = " " + str
}
str = str + " | "
str2 := "v" + unstable[i]
for ii := 10 - len(str2); ii > 0; ii-- {
str2 = " " + str2
}
fmt.Println(" " + str + str2)
}

fmt.Println("\nFor a complete list, visit http://coreybutler.github.io/nodedistro")
listRemote(listtype)
}
}

Expand Down

0 comments on commit 8880812

Please sign in to comment.