1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00
vimr/bin/clean_old_builds.sh
Tae Won Ha 866540dac4
Include pre-built libintl in the repository
- to eliminate warnings
- libintl.a and libintl.dylib are pre-built for 10.10
- When building neovim we have to pass the libintl location
2017-05-07 13:17:09 +02:00

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"