From 0225b8588c69dd7e6ed56e575eb0a717dba38a29 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 22 Dec 2018 22:59:02 -0800 Subject: [PATCH] refactor: change ubuntu npm installation help --- cmd/prerequisites.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/prerequisites.go b/cmd/prerequisites.go index 972ebd25f..d23bfc0a5 100644 --- a/cmd/prerequisites.go +++ b/cmd/prerequisites.go @@ -52,7 +52,7 @@ func getRequiredProgramsLinux() *Prerequisites { case Ubuntu: result.Add(newPrerequisite("gcc", "Please install with `sudo apt install build-essentials` and try again")) result.Add(newPrerequisite("pkg-config", "Please install with `sudo apt install pkg-config` and try again")) - result.Add(newPrerequisite("npm", "Please install from https://nodejs.org/en/download/ and try again")) + result.Add(newPrerequisite("npm", "Please install with `sudo apt install npm` and try again")) default: result.Add(newPrerequisite("gcc", "Please install with your system package manager and try again"))