aboutsummaryrefslogtreecommitdiff
path: root/PlugUpdate.sh
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2018-02-01 02:49:17 -0500
committerTucker Evans <tuckerevans24@gmail.com>2018-02-01 02:53:58 -0500
commitf186a6efd30dda2f2b0d454d419b26d34a802e5a (patch)
tree67b1470bfadcce5c6afbf51e69cad58e925c31d9 /PlugUpdate.sh
parent198a40c17d6ae1bc880e181d10eff68232665cfe (diff)
Added info about vimPlugins to README.
Added License to start of vimPlugins scripts, and moved scripts to their own folder for use with stow.
Diffstat (limited to 'PlugUpdate.sh')
-rwxr-xr-xPlugUpdate.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/PlugUpdate.sh b/PlugUpdate.sh
deleted file mode 100755
index 165219a..0000000
--- a/PlugUpdate.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-if [ "$PWD" != "$HOME/dotfiles" ]
-then
- echo "Must be run in $HOME/dotfiles"
- exit 1
-fi
-
-
-while getopts o opt; do
- if [ "$opt" == "h" ]
- then
- nroff .PlugHelp.tr
- exit 0
- fi
-done
-
-git submodule update --remote --merge && \
-git commit -m"Updated vim plugins." && echo "Success"