summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStone Preston <[email protected]>2021-12-23 03:46:14 -0600
committerGitHub <[email protected]>2021-12-23 10:46:14 +0100
commita79de08d40f08e9a3b753175df11283ed737067c (patch)
tree05b453489dab1e6336d7800379acb1fe55ad4335
parent655fd1b0ca5405ce67f3f8083ef6a4f7d2dedea0 (diff)
refactor(install.sh): fix typo in node error message (#2107)
-rwxr-xr-xutils/installer/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh
index fbe920cf..cfedd777 100755
--- a/utils/installer/install.sh
+++ b/utils/installer/install.sh
@@ -225,7 +225,7 @@ function __validate_node_installation() {
manager_home="$($pkg_manager config get prefix 2>/dev/null)"
if [ ! -d "$manager_home" ] || [ ! -w "$manager_home" ]; then
- echo "[ERROR] Unable to install without administrative privilages. Please set you NPM_HOME correctly and try again."
+ echo "[ERROR] Unable to install without administrative privileges. Please set your NPM_HOME correctly and try again."
exit 1
fi
}