Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be50de2 commit dd4b185Copy full SHA for dd4b185
commands/install_common.go
@@ -35,7 +35,11 @@ func showInstallPackages(conf *configuration.Configuration) {
35
}
36
37
if conf.NodeJS.Install {
38
- terminal.Printf(" - NodeJS v%s\n", conf.NodeJS.Version)
+ if "lts" == conf.NodeJS.Version {
39
+ terminal.Println(" - NodeJS LTS")
40
+ } else {
41
+ terminal.Printf(" - NodeJS v%s\n", conf.NodeJS.Version)
42
+ }
43
44
45
if conf.Nginx.Install {
0 commit comments