diff options
| author | georg.brandl <devnull@localhost> | 2008-03-23 17:43:22 +0000 |
|---|---|---|
| committer | georg.brandl <devnull@localhost> | 2008-03-23 17:43:22 +0000 |
| commit | 9decabc7e2eb0b2bf11019f20c32c62aeef258fb (patch) | |
| tree | d497c508356030924b38a031cfe630a955fc56ae /doc/intro.rst | |
| parent | 2f1d077345e91ae7c7b2f38500be43ac88bf7d80 (diff) | |
| download | sphinx-9decabc7e2eb0b2bf11019f20c32c62aeef258fb.tar.gz | |
Don't install scripts twice. Thanks to lunar.
Diffstat (limited to 'doc/intro.rst')
| -rw-r--r-- | doc/intro.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/intro.rst b/doc/intro.rst index 7dabb69f..c5e6f71b 100644 --- a/doc/intro.rst +++ b/doc/intro.rst @@ -31,11 +31,11 @@ The root directory of a documentation collection is called the :dfn:`documentation root`. There's nothing special about it; it just needs to contain the Sphinx configuration file, :file:`conf.py`. -Sphinx comes with a script called :program:`sphinx-quickstart.py` that sets up a +Sphinx comes with a script called :program:`sphinx-quickstart` that sets up a documentation root and creates a default :file:`conf.py` from a few questions it asks you. Just run :: - $ sphinx-quickstart.py + $ sphinx-quickstart and answer the questions. @@ -43,17 +43,17 @@ and answer the questions. Running a build --------------- -A build is started with the :program:`sphinx-build.py` script. It is called +A build is started with the :program:`sphinx-build` script. It is called like this:: - $ sphinx-build.py -b latex sourcedir builddir + $ sphinx-build -b latex sourcedir builddir where *sourcedir* is the :term:`documentation root`, and *builddir* is the directory in which you want to place the built documentation (it must be an existing directory). The :option:`-b` option selects a builder; in this example Sphinx will build LaTeX files. -The :program:`sphinx-build.py` script has several more options: +The :program:`sphinx-build` script has several more options: **-a** If given, always write all output files. The default is to only write output |
