From 8443c67b2cd4f5aa3e85e7e9b9409e677b60d312 Mon Sep 17 00:00:00 2001 From: Raphael Date: Mon, 13 May 2019 20:28:35 +0200 Subject: [PATCH] some logging --- install.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f68916c..3da8085 100644 --- a/install.sh +++ b/install.sh @@ -1,11 +1,17 @@ #!/bin/bash +echo "==> running dotfiles install script" + BASE=$HOME/.dotfiles if [ ! -d "$BASE" ]; then + echo "==> cloning git repository" git clone git@github.com:sundowndev/dotfiles.git $BASE else - echo "dotfiles already installed" + echo "==> dotfiles already installed" + echo "==> running git pull" + cd $BASE + git pull fi # links @@ -26,3 +32,5 @@ git config --global user.name "sundowndev" #ln -sf $BASE/vimrc ~/.vimrc #vim +PlugInstall +qall + +echo "==> script executed"