mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-25 06:06:21 +03:00
e7b002cc96
branch
17 lines
168 B
Bash
Executable File
17 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
echo "### Cleaning old builds"
|
|
|
|
rm -rf build
|
|
xcodebuild clean
|
|
|
|
pushd neovim
|
|
rm -rf build
|
|
make distclean
|
|
popd
|
|
|
|
echo "### Cleaned old builds"
|