diff options
-rwxr-xr-x | setup.sh | 1 | ||||
-rwxr-xr-x | vim_plugins.sh | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -53,6 +53,7 @@ links_update() { main() { config_links_in_path links_update + "$script_dir/vim_plugins.sh" } main diff --git a/vim_plugins.sh b/vim_plugins.sh index 189cb7a..3801b74 100755 --- a/vim_plugins.sh +++ b/vim_plugins.sh @@ -15,14 +15,14 @@ plugins=( pull() { local plugin for plugin in ${plugins[@]+"${plugins[@]}"}; do - echo "Plugin: $plugin" - local name name="${plugin#*/}" if [ -d "$name" ]; then - git -C "$name" pull -q + echo "Updating plugin: $plugin" + git -C "$name" pull else + echo "Installing plugin: $plugin" git clone -q "https://github.com/$plugin.git" fi done |