diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-04 10:05:32 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-03-04 10:05:32 +0100 |
commit | 738ed5ac161aecd1e945f0f502101fa44cd8711e (patch) | |
tree | fa2f3ba8051af11c213cb942b92994bcd8ddb5ed | |
parent | vim_plugins.sh: add editorconfig-vim (diff) | |
download | linux-home-738ed5ac161aecd1e945f0f502101fa44cd8711e.tar.gz linux-home-738ed5ac161aecd1e945f0f502101fa44cd8711e.zip |
vim_plugins.sh: quiet pulling
-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 } |