mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 19:47:41 +03:00
16 lines
223 B
Bash
Executable File
16 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "### Cleaning old builds"
|
|
|
|
# ## delete previously built VimR
|
|
rm -rf build
|
|
xcodebuild clean
|
|
|
|
# ## delete previously built neovim
|
|
pushd neovim
|
|
rm -rf build
|
|
make distclean
|
|
popd
|
|
|
|
echo "### Cleaned old builds"
|