aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-03-04 10:05:32 +0100
committerEgor Tensin <Egor.Tensin@gmail.com>2023-03-04 10:05:32 +0100
commit738ed5ac161aecd1e945f0f502101fa44cd8711e (patch)
treefa2f3ba8051af11c213cb942b92994bcd8ddb5ed
parentvim_plugins.sh: add editorconfig-vim (diff)
downloadlinux-home-738ed5ac161aecd1e945f0f502101fa44cd8711e.tar.gz
linux-home-738ed5ac161aecd1e945f0f502101fa44cd8711e.zip
vim_plugins.sh: quiet pulling
-rwxr-xr-xvim_plugins.sh4
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
}