summaryrefslogtreecommitdiffstats
path: root/deploy
diff options
context:
space:
mode:
authorThibaut HOREL <horel@cypres.rocq.inria.fr>2012-12-10 12:17:16 +0100
committerThibaut HOREL <horel@cypres.rocq.inria.fr>2012-12-10 12:17:16 +0100
commit290bd0b7dfa61d3d0b88d6338c5b00b6e598c649 (patch)
treea24c7a4a3df953916d8ab592dc0182e907a3c5fb /deploy
parent41035b62b00d3d0469e4247ffe79d68cf268831a (diff)
downloaddotfiles-290bd0b7dfa61d3d0b88d6338c5b00b6e598c649.tar.gz
Improve deploy script to make it compliant to old systems
Diffstat (limited to 'deploy')
-rwxr-xr-xdeploy12
1 files changed, 12 insertions, 0 deletions
diff --git a/deploy b/deploy
new file mode 100755
index 0000000..0c147af
--- /dev/null
+++ b/deploy
@@ -0,0 +1,12 @@
+#! /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
+ ln -snf $PWD/$file $DEPLOY_DIR$(dirname $file)
+done
+