From 39d12e492c180542f056970c66f3dff894cb9650 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Wed, 8 Nov 2017 14:32:26 -0500 Subject: [PATCH] Remove needless check from add-submodule --- add-submodule | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add-submodule b/add-submodule index edcf769..1bd6e12 100755 --- a/add-submodule +++ b/add-submodule @@ -1,6 +1,6 @@ #!/usr/bin/env bash -[[ -z "$1" || -z "$2" ]] && exit 1 +[[ -z "$2" ]] && exit 1 git submodule add "$1" "vim/bundle/$2" git submodule update --init --recursive