summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThibaut HOREL <horel@cypres.rocq.inria.fr>2012-12-10 12:53:01 +0100
committerThibaut HOREL <horel@cypres.rocq.inria.fr>2012-12-10 12:53:01 +0100
commit325a667bc5aa437cc072484b399654519967a7ec (patch)
tree90a9516cea0c2345bb9cf84fbef990a81ae195fd
parent290bd0b7dfa61d3d0b88d6338c5b00b6e598c649 (diff)
downloaddotfiles-325a667bc5aa437cc072484b399654519967a7ec.tar.gz
Fix small bug in previous commit
-rwxr-xr-xdeploy2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy b/deploy
index 0c147af..db1c335 100755
--- a/deploy
+++ b/deploy
@@ -5,7 +5,7 @@ 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")
+for file in $(find ! \( -path "*.git" -prune \) -type f ! -path "./deploy" ! -path "./README")
do
ln -snf $PWD/$file $DEPLOY_DIR$(dirname $file)
done