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
|
if command_exists git; then
|
||||||
spin yellow "Cloning $PACKAGE sources at $cloneDir/neovim.."
|
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"
|
cd neovim || throw "Cannot navigate into neovim"
|
||||||
|
|
||||||
check "Cloned sources"
|
check "Cloned sources"
|
||||||
line
|
line
|
||||||
pen ${output:-}
|
# pen ${output:-}
|
||||||
else
|
else
|
||||||
throw "Cannot clone the repo.."
|
throw "Cannot clone the repo.."
|
||||||
fi
|
fi
|
||||||
|
@ -92,7 +92,9 @@
|
||||||
makeInstall() {
|
makeInstall() {
|
||||||
# echo_pkg build "Compiling neovim from source"
|
# echo_pkg build "Compiling neovim from source"
|
||||||
spin "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
|
echo_pkg install
|
||||||
$_sudo make install
|
$_sudo make install
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue