12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #!/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!"
|