diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2020-04-28 09:55:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 09:55:57 -0700 |
commit | 00d83cd79d7aa766d841853298de37e85c0fb458 (patch) | |
tree | 153096e4b49faf9ce9ac36f3ae0474c11f674352 /share | |
parent | 7670ae468f0f3deea60efd52eb096d35f96896f9 (diff) | |
download | spack-00d83cd79d7aa766d841853298de37e85c0fb458.tar.gz spack-00d83cd79d7aa766d841853298de37e85c0fb458.tar.bz2 spack-00d83cd79d7aa766d841853298de37e85c0fb458.tar.xz spack-00d83cd79d7aa766d841853298de37e85c0fb458.zip |
dev-build: stop before phase (#14699)
Add `-b,--before` option to dev-build command to stop before the phase in question.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index a4d59220fa..5a4fb027c9 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -697,7 +697,7 @@ _spack_deprecate() { _spack_dev_build() { if $list_options then - SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet -u --until --clean --dirty" + SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet -b --before -u --until --clean --dirty" else _all_packages fi @@ -706,7 +706,7 @@ _spack_dev_build() { _spack_diy() { if $list_options then - SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet -u --until --clean --dirty" + SPACK_COMPREPLY="-h --help -j --jobs -d --source-path -i --ignore-dependencies -n --no-checksum --keep-prefix --skip-patch -q --quiet -b --before -u --until --clean --dirty" else _all_packages fi |