From edd70bd23ebadf49c3449fafbc4b447781d6ca6c Mon Sep 17 00:00:00 2001 From: pika Date: Wed, 21 May 2025 19:46:19 +0200 Subject: [PATCH] testing.. --- neovim.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/neovim.sh b/neovim.sh index 19faed9..0a4d150 100644 --- a/neovim.sh +++ b/neovim.sh @@ -73,12 +73,12 @@ if command_exists git; then spin yellow "Cloning $PACKAGE sources at $cloneDir/neovim.." - if run 'git clone --depth=1 https://github.com/neovim/neovim.git'; then + if run git clone --depth=1 https://github.com/neovim/neovim.git; then cd neovim || throw "Cannot navigate into neovim" check "Cloned sources" line - pen ${output:-} + # pen ${output:-} else throw "Cannot clone the repo.." fi @@ -92,7 +92,9 @@ makeInstall() { # echo_pkg build "Compiling neovim from source" spin "Compiling neovim from source" - if run "make CMAKE_BUILD_TYPE=RelWithDebInfo"; then + if run make CMAKE_BUILD_TYPE=RelWithDebInfo; then + check "Compiled $PACKAGE from source" + line echo_pkg install $_sudo make install else