source: trunk/subversion/snapshot

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