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
2017-12-03 09:59:15 +01:00

16 lines
234 B
Bash
Executable File

#!/bin/bash
set -e
echo "### Cleaning old builds"
rm -rf build
xcodebuild -workspace VimR.xcworkspace -scheme VimR clean -derivedDataPath build
pushd NvimView/neovim
rm -rf build
make distclean
popd
echo "### Cleaned old builds"