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
RevLine 
[24]1#!/bin/sh
2
[25]3# $Id$
4
[28]5PATH=/bin:/usr/bin
6
[24]7dir=`mktemp -d`
8[ -z "$dir" ] && exit 1
9
[28]10/usr/bin/svn -q co http://nanardon.homelinux.org/svn/documentation/trunk/subversion $dir
[24]11
12(
13cd $dir
14make >/dev/null 2>&1 && \
[28]15[ -f subversion.pdf ] && /usr/bin/rsync -qP subversion.pdf ~nanardon/public_html/
[24]16)
17
18rm -fr $dir
Note: See TracBrowser for help on using the repository browser.