summaryrefslogtreecommitdiff
path: root/utils/installer.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/installer.sh')
-rwxr-xr-xutils/installer.sh43
1 files changed, 0 insertions, 43 deletions
diff --git a/utils/installer.sh b/utils/installer.sh
deleted file mode 100755
index 440a1de6..00000000
--- a/utils/installer.sh
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-# Standalone installer for Unixs
-# Original version is created by shoma2da
-# https://github.com/shoma2da/neobundle_installer
-
-if [ $# -ne 1 ]; then
- echo "You must specify the installation directory!"
- exit 1
-fi
-
-# Convert the installation directory to absolute path
-case $1 in
- /*) PLUGIN_DIR=$1;;
- *) PLUGIN_DIR=$PWD/$1;;
-esac
-INSTALL_DIR="${PLUGIN_DIR}/repos/github.com/Shougo/dein.vim"
-echo "Install to \"$INSTALL_DIR\"..."
-if [ -e "$INSTALL_DIR" ]; then
- echo "\"$INSTALL_DIR\" already exists!"
-fi
-
-echo ""
-
-# check git command
-type git || {
- echo 'Please install git or update your path to include the git executable!'
- exit 1
-}
-echo ""
-
-# make plugin dir and fetch dein
-if ! [ -e "$INSTALL_DIR" ]; then
- echo "Begin fetching dein..."
- mkdir -p "$PLUGIN_DIR"
- git clone https://github.com/Shougo/dein.vim "$INSTALL_DIR"
- echo "Done."
- echo ""
-fi
-
-
-echo "Done."
-
-echo "Complete setup dein!"