1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-25 06:06:21 +03:00
vimr/bin/clean_old_builds.sh

17 lines
168 B
Bash
Raw Normal View History

2016-10-14 13:15:32 +03:00
#!/bin/bash
2016-10-18 19:00:15 +03:00
set -e
set -x
2016-10-18 19:00:15 +03:00
2016-10-14 13:15:32 +03:00
echo "### Cleaning old builds"
rm -rf build
xcodebuild clean
pushd neovim
rm -rf build
make distclean
popd
echo "### Cleaned old builds"