From aec8f8c4c3728aeb7a7b45d4d88d687c40ecf920 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 4 May 2012 15:44:17 -0500 Subject: [PATCH] correcting and moving install.sh --- install.sh => tools/install.sh | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) rename install.sh => tools/install.sh (51%) diff --git a/install.sh b/tools/install.sh similarity index 51% rename from install.sh rename to tools/install.sh index 847f7ec..3b8fde3 100644 --- a/install.sh +++ b/tools/install.sh @@ -1,17 +1,10 @@ -#!/bin/sh - -# clone the repository +echo "cloning repo to ~/.dotfiles" git clone git@github.com:nicknisi/dotfiles.git ~/.dotfiles - -# cd into directory cd ~/.dotfiles - -# initialize submodules +echo "initializing git submodules" git submodule init git submodule update - -# backup existing configuration +echo "running backup" rake backup - -# run the install +echo "creating symlinks" rake install