1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 03:25:03 +03:00
vimr/bin/clean_old_builds.sh
2019-12-22 21:45:42 +01:00

17 lines
350 B
Bash
Executable File

#!/bin/bash
set -Eeuo pipefail
echo "### Cleaning old builds"
pushd "$( dirname "${BASH_SOURCE[0]}" )/.." > /dev/null
rm -rf build
xcodebuild -workspace VimR.xcworkspace -derivedDataPath build -scheme VimR clean
pushd NvimView/neovim > /dev/null
rm -rf build
make distclean
popd > /dev/null
popd > /dev/null
echo "### Cleaned old builds"