From 46597d1677cecd2f57ca361a0da52b904edde064 Mon Sep 17 00:00:00 2001 From: pika Date: Sun, 11 May 2025 14:45:09 +0200 Subject: [PATCH] wip --- neovim.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/neovim.sh b/neovim.sh index 532fa3d..db234b9 100644 --- a/neovim.sh +++ b/neovim.sh @@ -35,6 +35,7 @@ } installBuildDependencies() { + echo_info "Checking build dependencies, and installs missing.." local depsDebian=(ninja-build gettext cmake curl build-essential) local depsFedora=(ninja-build cmake gcc make gettext curl glibc-gconv-extra) local depsOpensuse=(ninja cmake gcc-c++ gettext-tools curl) @@ -56,6 +57,7 @@ cloneSources() { local cloneDir="$(mktemp -d)" + echo_info "Cloning neovim sources into tempdir at $cloneDir" cd $cloneDir || mkdir $cloneDir && cd $cloneDir if command_exists git; then @@ -71,8 +73,10 @@ } makeInstall() { + echo_info "Compiling neovim from source" if run make CMAKE_BUILD_TYPE=RelWithDebInfo; then - $_sudo make install + echo_info "Installing neovim.." + run $_sudo make install else echo_error "Failure while building!" exit 1