diff options
Diffstat (limited to 'utils')
| -rwxr-xr-x | utils/lib.sh | 2 | ||||
| -rwxr-xr-x | utils/lib_nvm.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/lib.sh b/utils/lib.sh index 4472b9d32..257c15024 100755 --- a/utils/lib.sh +++ b/utils/lib.sh @@ -1535,7 +1535,7 @@ pkg_install() { ;; arch) # shellcheck disable=SC2068 - pacman --noprogressbar -Sy --noconfirm $@ + pacman --noprogressbar -Sy --noconfirm --needed $@ ;; fedora) # shellcheck disable=SC2068 diff --git a/utils/lib_nvm.sh b/utils/lib_nvm.sh index 04aa8a92e..6dc0f5ed4 100755 --- a/utils/lib_nvm.sh +++ b/utils/lib_nvm.sh @@ -69,7 +69,7 @@ nvm.min_node() { local higher_v if ! command -v node >/dev/null; then - wanr_msg "Node.js is not yet installed" + warn_msg "Node.js is not yet installed" return 42 fi |