Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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
}