From: Fred Drake Date: Tue, 22 Oct 2002 21:06:24 +0000 (+0000) Subject: Work around the fact that "maint" alone is a symlink now. X-Git-Tag: v2.2.3c1~282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3acc5d64c7d8c798fe7c209585ecce01f708f945;p=thirdparty%2FPython%2Fcpython.git Work around the fact that "maint" alone is a symlink now. --- diff --git a/Doc/tools/push-docs.sh b/Doc/tools/push-docs.sh index ab789e6388fb..886b8553ce18 100755 --- a/Doc/tools/push-docs.sh +++ b/Doc/tools/push-docs.sh @@ -59,6 +59,11 @@ if [ "$1" ] ; then shift fi +if [ "$DOCTYPE" = 'maint' ] ; then + # 'maint' is a symlink + DOCTYPE='maint22' +fi + START="`pwd`" MYDIR="`dirname $0`" cd "$MYDIR"