From 4347627b639f908894a89e208af919904e08cc7d Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Sat, 3 Jan 2015 22:08:22 +0100 Subject: [PATCH] Hide output from install script. --- README.md | 2 +- install.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9bc3e34..f00125e 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Installation To install this package as your local vim configuration, do the following: -``` +```bash git clone https://github.com/bertptrs/vimconfig.git ~/.vim ~/.vim/install.sh ``` diff --git a/install.sh b/install.sh index ed2ac2d..4afb65f 100755 --- a/install.sh +++ b/install.sh @@ -18,8 +18,8 @@ ln -s $HOME/.vim/vimrc $HOME/.vimrc echo -n "Downloading dependencies..." cd $HOME/.vim -git submodule init -git submodule update +git submodule init > /dev/null +git submodule update > /dev/null echo " Done"