2013-02-06 11:16:49 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2014-05-13 19:12:52 -04:00
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2013-04-09 21:36:59 -04:00
|
|
|
|
2014-05-15 22:21:04 -04:00
|
|
|
build_file=$SCRIPT_DIR/third_party/ycmd/build.sh
|
|
|
|
|
|
|
|
if [[ ! -f "$build_file" ]]; then
|
|
|
|
echo "File $build_file doesn't exist; you probably forgot to run:"
|
|
|
|
printf "\n\tgit submodule update --init --recursive\n\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
$build_file "$@"
|
2014-05-14 18:00:59 -04:00
|
|
|
|
|
|
|
# Remove old YCM libs if present so that YCM can start.
|
2014-05-15 12:54:41 -04:00
|
|
|
rm -f python/*ycm_core.* &> /dev/null
|
|
|
|
rm -f python/*ycm_client_support.* &> /dev/null
|
|
|
|
rm -f python/*clang*.* &> /dev/null
|