diff options
author | Matthew Winter <[email protected]> | 2023-04-24 23:13:01 +1000 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-24 20:13:01 +0700 |
commit | be0bcaf8ff657f2c24fde50267d7182150f4b8cf (patch) | |
tree | 7463e76ffd868b78015222c39823b08efc883762 | |
parent | 7a4265fa464cc6b2d1e604cb2fded451a2a9adfb (diff) |
fix: add missing LF to install script (#4075)
-rwxr-xr-x | utils/installer/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 7bc1968d..a1bf94c4 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -439,7 +439,7 @@ function setup_lvim() { "$INSTALL_PREFIX/bin/$NVIM_APPNAME" --headless -c 'quitall' - echo "Lazy setup complete" + printf "\nLazy setup complete" verify_core_plugins } |