testing..

This commit is contained in:
pika 2025-05-21 19:46:19 +02:00
parent b6b22c2031
commit edd70bd23e

View file

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