From f73bfb65780709b181cc4f53bff554f67f26a2b3 Mon Sep 17 00:00:00 2001 From: Brandon Wood Date: Sun, 24 Jan 2016 11:53:19 -0600 Subject: [PATCH] Updated warning message when sha256sum utility not found Relates to @ljharb's comment on the warning message not including all of the utilties searched for. https://github.com/creationix/nvm/pull/981#discussion_r50638351 --- nvm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvm.sh b/nvm.sh index f5dd8bd..b8ffb0d 100755 --- a/nvm.sh +++ b/nvm.sh @@ -786,7 +786,7 @@ nvm_checksum() { elif nvm_has "bssl" && ! nvm_is_alias "bssl"; then NVM_CHECKSUM="$(bssl sha256sum "$1" | awk '{print $1}')" else - echo "Unaliased sha256sum, sha256, or gsha256sum not found." >&2 + echo "Unaliased sha256sum, shasum, sha256, gsha256sum, openssl, libressl, or bssl not found." >&2 echo "WARNING: Continuing *without checksum verification*" >&2 return fi