blob: 2de94745a3f24869cf569654ef1c2312a3b62ea3 [file] [log] [blame]
Fred Drake692565c2000-10-19 05:54:51 +00001#! /bin/sh
2
3# Script to push docs from my development area to SourceForge, where the
4# update-docs.sh script unpacks them into their final destination.
5
6START="`pwd`"
7MYDIR="`dirname $0`"
8cd "$MYDIR"
9MYDIR="`pwd`"
10HTMLDIR="${HTMLDIR:-html}"
11
12cd "../$HTMLDIR"
13make --no-print-directory || exit $?
Fred Drake7ceab732000-10-24 19:59:55 +000014cd ..
Fred Drake692565c2000-10-19 05:54:51 +000015RELEASE=`grep '^RELEASE=' Makefile | sed 's|RELEASE=||'`
16make --no-print-directory HTMLDIR="$HTMLDIR" bziphtml
17scp "html-$RELEASE.tar.bz2" python.sourceforge.net:/home/users/fdrake/python-docs-update.tar.bz2