summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorAudric Schiltknecht <storm@chemicalstorm.org>2015-05-15 22:26:37 -0400
committerAudric Schiltknecht <storm@chemicalstorm.org>2015-05-15 22:26:37 -0400
commit98652fc237bf703e77c77edd93aabb7339f2f5e4 (patch)
tree76aeb207322fae47b5e175409030f4b37f3490ca /install.sh
parentd8ec9d0fde288a45ee3e08d37dc2e9952b04528b (diff)
downloaddotfiles-98652fc237bf703e77c77edd93aabb7339f2f5e4.tar.gz
dotfiles-98652fc237bf703e77c77edd93aabb7339f2f5e4.tar.bz2
dotfiles-98652fc237bf703e77c77edd93aabb7339f2f5e4.zip
Create local bin directory
* Export it in $PATH * Add link to eg binary
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index a64cb48..f298670 100755
--- a/install.sh
+++ b/install.sh
@@ -1,9 +1,10 @@
#!/bin/bash
# create the symbolic links to the files in this repository
-
cd `dirname $0`
+git submodule init --update
+
CURRENT_PATH=`pwd`
ln -s $CURRENT_PATH/bash/bashrc ~/.bashrc
@@ -18,3 +19,5 @@ ln -s $CURRENT_PATH/screenrc ~/.screenrc
ln -s $CURRENT_PATH/fonts ~/.fonts
fc-cache -vf ~/.fonts
+
+ln -s $CURRENT_PATH/bin ~/bin