Removed NPM install check function

No longer necessary now that Fast Node Manager is being used and
replaces this functionality.
This commit is contained in:
Brooke Kuhlmann
2021-07-29 19:59:42 -06:00
parent e919d07068
commit 80f289a6b8

View File

@@ -101,16 +101,6 @@ get_install_root() {
}
export -f get_install_root
# Checks NPM has been installed and exits if otherwise.
# Parameters: None.
check_npm_install() {
if ! command -v npm > /dev/null; then
printf "%s\n" "ERROR: NPM can't be found. Please ensure Homebrew and NPM have been installed."
exit 1
fi
}
export -f check_npm_install
# Checks Mac App Store (mas) CLI has been installed and exits if otherwise.
# Parameters: None.
check_mas_install() {