From 738ed5ac161aecd1e945f0f502101fa44cd8711e Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 4 Mar 2023 10:05:32 +0100 Subject: vim_plugins.sh: quiet pulling --- vim_plugins.sh | 4 ++-- 1 file 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 } -- cgit v1.2.3