testing..

This commit is contained in:
pika 2025-05-22 10:56:46 +02:00
parent ac8b7261f7
commit 0e6049bf61

View file

@ -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"