diff options
author | kylo252 <[email protected]> | 2022-02-21 11:51:32 +0100 |
---|---|---|
committer | kylo252 <[email protected]> | 2022-02-21 11:51:32 +0100 |
commit | 3abb0a7350392a4a02f970e8636dcb167c1ba53c (patch) | |
tree | c2f12e15d5fd78cfb0d4a5023c97820bd9a66a83 /utils/installer/install-neovim-from-release | |
parent | c8157a0b924279c4344b8c311d793545d1549cf0 (diff) | |
parent | 4400e39a69dce6c2a63b391242e38f781e35025d (diff) |
Merge branch 'rolling'
Diffstat (limited to 'utils/installer/install-neovim-from-release')
-rwxr-xr-x | utils/installer/install-neovim-from-release | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install-neovim-from-release b/utils/installer/install-neovim-from-release index e20a4804..e98b1aee 100755 --- a/utils/installer/install-neovim-from-release +++ b/utils/installer/install-neovim-from-release @@ -55,7 +55,7 @@ function verify_neovim() { DOWNLOADED_SHA="$(openssl dgst -sha256 "$DOWNLOAD_DIR/$ARCHIVE_NAME.tar.gz" | awk '{print $2}')" if [ "$RELEASE_SHA" != "$DOWNLOADED_SHA" ]; then - echo "Error! checksum mis-match." + echo "Error! checksum mismatch." echo "Expected: $RELEASE_SHA but got: $DOWNLOADED_SHA" exit 1 fi |