diff options
author | Christoph Junghans <christoph.junghans@gmail.com> | 2017-08-23 15:08:52 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-08-23 14:08:52 -0700 |
commit | fa1d0a8a4d41616e4689ca0c80318269f55c5c9e (patch) | |
tree | 24d76bc3da8bc8302169814390cc504059fb573e /share | |
parent | 359b21c888c923ef61b4680cdbd00e3781a9d78b (diff) | |
download | spack-fa1d0a8a4d41616e4689ca0c80318269f55c5c9e.tar.gz spack-fa1d0a8a4d41616e4689ca0c80318269f55c5c9e.tar.bz2 spack-fa1d0a8a4d41616e4689ca0c80318269f55c5c9e.tar.xz spack-fa1d0a8a4d41616e4689ca0c80318269f55c5c9e.zip |
Add --source option to spack install (#4102)
- -- source will copy source into prefix along with the package.
- added a test for --source, as well
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 408aaf61ac..05ae403eb5 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -456,7 +456,7 @@ function _spack_install { then compgen -W "-h --help --only -j --jobs --keep-prefix --keep-stage -n --no-checksum -v --verbose --fake --clean --dirty - --run-tests --log-format --log-file" -- "$cur" + --run-tests --log-format --log-file --source" -- "$cur" else compgen -W "$(_all_packages)" -- "$cur" fi |