diff options
author | Greg Becker <becker33@llnl.gov> | 2019-07-17 13:46:56 -0500 |
---|---|---|
committer | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2019-07-17 11:46:56 -0700 |
commit | 5cf88781854ad68ebd07c99aa97860b444c3a479 (patch) | |
tree | fe9d55114a61391ea283991aefe3bfd1304588ee /share | |
parent | c9b6c78d3af51fb37a8def237139132499866d97 (diff) | |
download | spack-5cf88781854ad68ebd07c99aa97860b444c3a479.tar.gz spack-5cf88781854ad68ebd07c99aa97860b444c3a479.tar.bz2 spack-5cf88781854ad68ebd07c99aa97860b444c3a479.tar.xz spack-5cf88781854ad68ebd07c99aa97860b444c3a479.zip |
feature: Allow developers to use Spack for partial builds (#12006)
Added new diy option.
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 c90b35338d..362fe1e0bf 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -404,7 +404,7 @@ function _spack_diy { compgen -W "-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet --clean - --dirty" -- "$cur" + --dirty -u --until" -- "$cur" else compgen -W "$(_all_packages)" -- "$cur" fi |