summaryrefslogtreecommitdiff
path: root/bin/install
diff options
context:
space:
mode:
Diffstat (limited to 'bin/install')
-rwxr-xr-xbin/install9
1 files changed, 0 insertions, 9 deletions
diff --git a/bin/install b/bin/install
deleted file mode 100755
index bc21136..0000000
--- a/bin/install
+++ /dev/null
@@ -1,9 +0,0 @@
-#! /bin/bash
-dotdir=/home/urbain/dotfiles && cd $dotdir
-for file in `ls -A --ignore="Makefile" --ignore="README.md" --ignore=".git*"`; do
- if [[ -f $file/Makefile ]]; then
- cd $file && make && cd $dotdir
- else
- rm -f $HOME/$file && ln -s $dotdir/$file $HOME/$file
- fi
-done