diff options
| author | Miquel Sabaté <mikisabate@gmail.com> | 2013-07-31 13:44:44 +0200 |
|---|---|---|
| committer | Miquel Sabaté <mikisabate@gmail.com> | 2013-07-31 13:44:44 +0200 |
| commit | beb7e96b45b8d32d87a3d128b4068ca4c3b36853 (patch) | |
| tree | 8fbaae111837155223c6b056088136e4717b73ca /install.sh | |
| parent | 5e2b6d05c9fa3ae6ef9565fdd3ec268d0157cfc7 (diff) | |
| download | dotfiles-beb7e96b45b8d32d87a3d128b4068ca4c3b36853.tar.gz dotfiles-beb7e96b45b8d32d87a3d128b4068ca4c3b36853.zip | |
Moved the install script from Ruby to plain bash
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..bda9717 --- /dev/null +++ b/install.sh @@ -0,0 +1,17 @@ +#!/bin/bash + + +# If something goes wrong, get the f*ck out. +set -e + +# Install the files on this repo. +cp bashrc $HOME/.bashrc +cp irbrc $HOME/.irbrc +cp gemrc $HOME/.gemrc +cp gitcompletion.sh $HOME/.gitcompletion.sh +cp gitconfig $HOME/.gitconfig +cp global.gitignore $HOME/.gitignore +cp vimrc $HOME/.vimrc +cp hgrc $HOME/.hgrc +cp rake_completion $HOME/.rake_completion +chmod +x $HOME/.rake_completion |
