summaryrefslogtreecommitdiffstats
path: root/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/deploy.sh b/deploy.sh
deleted file mode 100755
index a934c19..0000000
--- a/deploy.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /bin/sh
-DEPLOY_DIR=$HOME/ #don't forget the trailing slash
-OIFS="$IFS"
-IFS=$'\n'
-
-cd $(dirname $0)
-find -type d ! \( -path "*.git" -prune \) -print0 | xargs -0 -I '{}' mkdir -p $DEPLOY_DIR{}
-for file in $(find ! \( -path "*.git" -prune \) -type f ! -path "./deploy.sh" ! -path "./README")
-do
- rm -f $DEPLOY_DIR$file
- ln -s -r $file $DEPLOY_DIR$(dirname $file)
-done
-