diff options
author | G-Ragghianti <33492707+G-Ragghianti@users.noreply.github.com> | 2020-04-03 16:33:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 13:33:20 -0700 |
commit | bae4f91bfe4e93cb8f2364c6580a54dfda0e3832 (patch) | |
tree | f21b25f5ff7e9925cf37a38c0b84aa97dcc5896e /share | |
parent | 0b99cc2261c075dd2abaf829ffc5b3bcce954bb9 (diff) | |
download | spack-bae4f91bfe4e93cb8f2364c6580a54dfda0e3832.tar.gz spack-bae4f91bfe4e93cb8f2364c6580a54dfda0e3832.tar.bz2 spack-bae4f91bfe4e93cb8f2364c6580a54dfda0e3832.tar.xz spack-bae4f91bfe4e93cb8f2364c6580a54dfda0e3832.zip |
Add option "--first" for "spack load" (#15622)
* Implemented --first option for "spack load"
* added test for "spack load --first"
Co-authored-by: gragghia <gragghia@localhost.localdomain>
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 6df546e89f..a4d59220fa 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -984,7 +984,7 @@ _spack_list() { _spack_load() { if $list_options then - SPACK_COMPREPLY="-h --help -r --dependencies --sh --csh --only" + SPACK_COMPREPLY="-h --help -r --dependencies --sh --csh --first --only" else _installed_packages fi |