summaryrefslogtreecommitdiffstats
path: root/deploy
diff options
context:
space:
mode:
Diffstat (limited to 'deploy')
-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