From 29b0a5c47862f387c5905a85d2c03e056003b915 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 23 Apr 2020 22:44:32 -0400 Subject: auto push --- utils/installer.sh | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100755 utils/installer.sh (limited to 'utils/installer.sh') 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!" -- cgit v1.2.3