diff options
-rwxr-xr-x | vim_plugins.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vim_plugins.sh b/vim_plugins.sh index 997555c..d2aa183 100755 --- a/vim_plugins.sh +++ b/vim_plugins.sh @@ -20,9 +20,9 @@ pull() { name="${plugin#*/}" if [ -d "$name" ]; then - git -C "$name" pull + git -C "$name" pull -q else - git clone "https://github.com/$plugin.git" + git clone -q "https://github.com/$plugin.git" fi done } |