diff options
author | Tyler Esser <tjesser@ucdavis.edu> | 2016-08-28 20:16:08 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-08-28 20:16:08 -0700 |
commit | 83897af7101e950b1d51411a5493115b67b45afd (patch) | |
tree | eed2438d9cdaa8bd1a6a045912e47d547ce1b64d | |
parent | d39322e278b287f88f062cd0aa8a4edc345dee73 (diff) | |
download | spack-83897af7101e950b1d51411a5493115b67b45afd.tar.gz spack-83897af7101e950b1d51411a5493115b67b45afd.tar.bz2 spack-83897af7101e950b1d51411a5493115b67b45afd.tar.xz spack-83897af7101e950b1d51411a5493115b67b45afd.zip |
Documentation: Fix accidental quotation. version() takes expand as a keyword. (#1640)
-rw-r--r-- | lib/spack/docs/packaging_guide.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/docs/packaging_guide.rst b/lib/spack/docs/packaging_guide.rst index 3dc83f9b92..879beb2476 100644 --- a/lib/spack/docs/packaging_guide.rst +++ b/lib/spack/docs/packaging_guide.rst @@ -434,7 +434,7 @@ executables and other custom archive types), you can add .. code-block:: python version('8.2.1', '4136d7b4c04df68b686570afa26988ac', - url='http://example.com/foo-8.2.1-special-version.tar.gz', 'expand=False') + url='http://example.com/foo-8.2.1-special-version.tar.gz', expand=False) When ``expand`` is set to ``False``, Spack sets the current working directory to the directory containing the downloaded archive before it |