1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 19:47:41 +03:00
vimr/bin/clean_old_builds.sh
2016-10-17 22:35:29 +02:00

14 lines
153 B
Bash
Executable File

#!/bin/bash
echo "### Cleaning old builds"
rm -rf build
xcodebuild clean
pushd neovim
rm -rf build
make distclean
popd
echo "### Cleaned old builds"