moved executables to correct bin folder

This commit is contained in:
Wryn Wagner
2020-10-08 17:56:12 -06:00
parent 185184679c
commit 3c892c3b53
3 changed files with 5 additions and 7 deletions

View File

@ -1,41 +0,0 @@
#!/bin/bash
function INSTALL() {
local CMD_NAME="$1"
local BUILD_DIR="$2"
local BUILD="$3"
echo "installing $CMD_NAME";
[ ! -d $BUILD_DIR ] && { echo "unable to locate $CMD_NAME build files"; exit 1; }
$BUILD >/dev/null 2>&1 \
&& echo "$CMD_NAME installation successful" \
|| echo "$CMD_NAME installation failed. Please attempt manual installation";
}
function INSTALL_COMMAND_T() {
local CMD_NAME='CommandT'
local BUILD_DIR="$HOME/.vim/bundle/command-t/ruby/command-t/ext/command-t";
function BUILD() {
cd $BUILD_DIR;
ruby extconf.rb;
make
}
INSTALL $CMD_NAME $BUILD_DIR BUILD;
}
function INSTALL_YCM() {
local CMD_NAME='YouCompleteMe';
local BUILD_DIR="$HOME/.vim/bundle/YouCompleteMe";
function BUILD() {
python3 $BUILD_DIR/install.py;
}
INSTALL $CMD_NAME $BUILD_DIR BUILD;
}
#INSTALL_COMMAND_T;
INSTALL_YCM;