diff options
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/docker/Dockerfile.local | 2 | ||||
| -rw-r--r-- | utils/docker/Dockerfile.remote | 2 | ||||
| -rwxr-xr-x | utils/installer/install-neovim-from-release | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/utils/docker/Dockerfile.local b/utils/docker/Dockerfile.local index c219e34f..ed4a67f3 100644 --- a/utils/docker/Dockerfile.local +++ b/utils/docker/Dockerfile.local @@ -20,7 +20,7 @@ RUN apt update && \    /LunarVim/utils/installer/install-neovim-from-release && \    /LunarVim/utils/installer/install.sh --local --no-install-dependencies -# Setup LVIM to run on starup +# Setup LVIM to run on startup  ENTRYPOINT ["/bin/bash"]  CMD ["lvim"] diff --git a/utils/docker/Dockerfile.remote b/utils/docker/Dockerfile.remote index 94765c48..179a5a42 100644 --- a/utils/docker/Dockerfile.remote +++ b/utils/docker/Dockerfile.remote @@ -20,7 +20,7 @@ RUN apt update && \    curl -LSs https://raw.githubusercontent.com/lunarvim/lunarvim/${LV_BRANCH}/utils/installer/install-neovim-from-release | bash && \    LV_BRANCH=${LV_BRANCH} curl -LSs https://raw.githubusercontent.com/lunarvim/lunarvim/${LV_BRANCH}/utils/installer/install.sh | bash -s -- --no-install-dependencies -# Setup LVIM to run on starup +# Setup LVIM to run on startup  ENTRYPOINT ["/bin/bash"]  CMD ["lvim"] 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 | 
