mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 11:28:22 +00:00
8 lines
147 B
Bash
Executable File
8 lines
147 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export VALGRIND_CHECK=1
|
|
make cmake CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=$PWD/dist"
|
|
make
|
|
make test > /dev/null 2>&1
|
|
make install
|