diff options
author | dundargoc <[email protected]> | 2022-02-18 15:17:17 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-18 17:47:17 +0330 |
commit | 4400e39a69dce6c2a63b391242e38f781e35025d (patch) | |
tree | 6e935a21b7e07339299d6b0348b90cbc3b7d5ded /utils/installer/install-neovim-from-release | |
parent | 3d4d9db850b6cb9e3eff08d93d95da8b6f97a70c (diff) |
chore: fix typos (#2292)
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 |