diff options
author | Fred Drake <fdrake@acm.org> | 2002-08-09 22:56:46 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-08-09 22:56:46 (GMT) |
commit | a132f6c38b898e1583978a9750f5d63abfe7641f (patch) | |
tree | eff22878de9673e40b0a929e9f83212e083d3ee5 /Doc/tools/update-docs.sh | |
parent | 1a0199a74f23c977485951ed61f531f8df235388 (diff) | |
download | cpython-a132f6c38b898e1583978a9750f5d63abfe7641f.zip cpython-a132f6c38b898e1583978a9750f5d63abfe7641f.tar.gz cpython-a132f6c38b898e1583978a9750f5d63abfe7641f.tar.bz2 |
Accomodate the packaging changes when we unpack into the dev/doc/ area
on python.org.
Diffstat (limited to 'Doc/tools/update-docs.sh')
-rwxr-xr-x | Doc/tools/update-docs.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/update-docs.sh b/Doc/tools/update-docs.sh index c68e875..8569da6 100755 --- a/Doc/tools/update-docs.sh +++ b/Doc/tools/update-docs.sh @@ -25,6 +25,7 @@ cd .. || exit $? if [ -d $DOCTYPE ] ; then mv $DOCTYPE $DOCTYPE-temp fi -mv $TMPDIR $DOCTYPE +mv $TMPDIR/Python-Docs-* $DOCTYPE +rmdir $TMPDIR rm -rf $DOCTYPE-temp || exit $? rm "$UPDATES" || exit $? |