source: trunk/subversion/snapshot @ 28

Last change on this file since 28 was 28, checked in by nanardon, 19 years ago
  • ensure PATh is ok
  • Property svn:executable set to *
  • Property svn:keywords set to Id
File size: 303 bytes
Line 
1#!/bin/sh
2
3# $Id$
4
5PATH=/bin:/usr/bin
6
7dir=`mktemp -d`
8[ -z "$dir" ] && exit 1
9
10/usr/bin/svn -q co http://nanardon.homelinux.org/svn/documentation/trunk/subversion $dir
11
12(
13cd $dir
14make >/dev/null 2>&1 && \
15[ -f subversion.pdf ] && /usr/bin/rsync -qP subversion.pdf ~nanardon/public_html/
16)
17
18rm -fr $dir
Note: See TracBrowser for help on using the repository browser.