From 0e6049bf61ce3e462984cc903ee65b1e320fb834 Mon Sep 17 00:00:00 2001 From: pika Date: Thu, 22 May 2025 10:56:46 +0200 Subject: [PATCH] testing.. --- neovim.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/neovim.sh b/neovim.sh index 1076e92..fcd3b76 100644 --- a/neovim.sh +++ b/neovim.sh @@ -111,19 +111,18 @@ line - spin yellow "Cloning $(pen bold red $PACKAGE) sources at $(pen red $cloneDir/neovim).." + spin yellow "Cloning $(pen bold red $PACKAGE) $(pen yellow 'sources at') $(pen red $cloneDir/neovim).." if command_exists git; then sleep 1 - if runer git clone --depth=1 https://github.com/neovim/neovim.git; then - check green "Cloned $PACKAGE sources" + if run --err err git clone --depth=1 https://github.com/neovim/neovim.git; then line - + check green "Cloned $PACKAGE sources" cd neovim || throw "Cannot navigate into neovim" # pen ${output:-} else throw "Cannot clone the repo.." - pen bold red "The error: $err" + pen bold red "The error: ${err:-}" fi else echo_error "Git was required, but is missing.. exiting now"