mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-26 07:13:24 +03:00
16 lines
161 B
Bash
Executable File
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"
|