blob: 921d600ed8ecd04e109f50262f9adc1e07c5fb19 [file] [log] [blame]
Narayan Kamathc981c482012-11-02 10:59:05 +00001#!/bin/sh
2
3# configuration
4# You should call this script with USER set as you want, else some default
5# will be used
6USER=${USER:-'orzel'}
7
8#ulimit -v 1024000
9
10# step 1 : build
11mkdir build -p
12(cd build && cmake .. && make doc) || { echo "make failed"; exit 1; }
13
14#step 2 : upload
15# (the '/' at the end of path is very important, see rsync documentation)
16rsync -az --no-p --delete build/doc/html/ $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/dox-devel/ || { echo "upload failed"; exit 1; }
17
18#step 3 : fix the perm
19ssh $USER@ssh.tuxfamily.org 'chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/dox-devel' || { echo "perm failed"; exit 1; }
20
21echo "Uploaded successfully"
22