source: trunk/subversion/snapshot @ 30

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