From f0209588ac6cd3833665a2a0208061e16706eb03 Mon Sep 17 00:00:00 2001 From: Tom Manville Date: Fri, 23 Dec 2022 23:45:49 -0800 Subject: [PATCH] Update install.sh to install homemaker and run bash task --- install.sh | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index 0ca9f2f..a95d7b1 100644 --- a/install.sh +++ b/install.sh @@ -1,8 +1,15 @@ #!/bin/bash -ln -s ./dotfiles/vimrc .vimrc -ln -s ./dotfiles/gitconfig .gitconfig -cat ./dotfiles/bashrc >> .bashrc -git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle -vim +BundleInstall +qall +set -uex + +# default installation on linux + +## ensure go and git are installed is installed +type go >/dev/null +type git >/dev/null + +## download homemaker +go install foosoft.net/projects/homemaker@latest +${HOME}/go/bin/homemaker --verbose --task=bash --variant=linux config.toml . +