diff options
author | Tamara Dahlgren <dahlgren1@llnl.gov> | 2020-03-09 15:52:13 -0700 |
---|---|---|
committer | Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com> | 2020-06-23 10:22:41 -0700 |
commit | 96932d65a819a08fe40dd4120b0ed05ed8011e01 (patch) | |
tree | a87b8a95529852f4e07e4ecbad997d30640abe57 /share | |
parent | f54a8a77b46dbbed97243a7d1d627d6f581f0b91 (diff) | |
download | spack-96932d65a819a08fe40dd4120b0ed05ed8011e01.tar.gz spack-96932d65a819a08fe40dd4120b0ed05ed8011e01.tar.bz2 spack-96932d65a819a08fe40dd4120b0ed05ed8011e01.tar.xz spack-96932d65a819a08fe40dd4120b0ed05ed8011e01.zip |
Added support for --fail-fast install option to terminate on first failure
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 ed42ad4edd..620dd9bef2 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -962,7 +962,7 @@ _spack_info() { _spack_install() { if $list_options then - SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --no-check-signature --show-log-on-error --source -n --no-checksum -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" + SPACK_COMPREPLY="-h --help --only -u --until -j --jobs --overwrite --fail-fast --keep-prefix --keep-stage --dont-restage --use-cache --no-cache --cache-only --no-check-signature --show-log-on-error --source -n --no-checksum -v --verbose --fake --only-concrete -f --file --clean --dirty --test --run-tests --log-format --log-file --help-cdash --cdash-upload-url --cdash-build --cdash-site --cdash-track --cdash-buildstamp -y --yes-to-all" else _all_packages fi |