testing..
This commit is contained in:
parent
b6b22c2031
commit
edd70bd23e
1 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue