forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Authors: thijs, therve Reviewer: jonathanj Fixes: twisted#2380 Add a script to build documentation for the release. git-svn-id: svn://svn.twistedmatrix.com/svn/Twisted/trunk@37746 bbbe8e31-12d6-0310-92fd-ac37d47ddeeb
- Loading branch information
Showing
4 changed files
with
228 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env python | ||
|
||
# Copyright (c) Twisted Matrix Laboratories. | ||
# See LICENSE for details. | ||
|
||
# This script is not meant to be distributed to users of Twisted. | ||
# It is only for use in making upstream Twisted releases. | ||
|
||
import sys, os | ||
extra = os.path.dirname(os.path.dirname(sys.argv[0])) | ||
sys.path.insert(0, extra) | ||
try: | ||
import _preamble | ||
except ImportError: | ||
sys.exc_clear() | ||
sys.path.remove(extra) | ||
|
||
from twisted.python._release import BuildDocsScript | ||
|
||
BuildDocsScript().main(sys.argv[1:]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.