aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Thomas Capricelli <orzel@freehackers.org>2011-12-06 15:55:20 +0100
committerGravatar Thomas Capricelli <orzel@freehackers.org>2011-12-06 15:55:20 +0100
commitc3ad1f93823361829fa0831cdfab6ed86d977c81 (patch)
tree21ada3594b2adb4d9a23bd040091cd032c949ce2 /scripts
parent6ec0af6dc7c47066347426f7ccb8af491ff12348 (diff)
eigen_gen_docs: dont try to update permissions on server
Diffstat (limited to 'scripts')
-rw-r--r--scripts/eigen_gen_docs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/eigen_gen_docs b/scripts/eigen_gen_docs
index 4a7573139..92983d2a2 100644
--- a/scripts/eigen_gen_docs
+++ b/scripts/eigen_gen_docs
@@ -15,7 +15,7 @@ mkdir build -p
#step 2 : upload
# (the '/' at the end of path is very important, see rsync documentation)
-rsync -az build/doc/html/ $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/dox-devel/ || { echo "upload failed"; exit 1; }
+rsync -az --no-p build/doc/html/ $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/dox-devel/ || { echo "upload failed"; exit 1; }
#step 3 : fix the perm
ssh $USER@ssh.tuxfamily.org 'chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/dox-devel' || { echo "perm failed"; exit 1; }