mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
866540dac4
- to eliminate warnings - libintl.a and libintl.dylib are pre-built for 10.10 - When building neovim we have to pass the libintl location
16 lines
161 B
Bash
Executable File
16 lines
161 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "### Cleaning old builds"
|
|
|
|
rm -rf build
|
|
xcodebuild clean
|
|
|
|
pushd neovim
|
|
rm -rf build
|
|
make distclean
|
|
popd
|
|
|
|
echo "### Cleaned old builds"
|