diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2021-01-27 02:24:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-27 09:24:09 +0100 |
commit | aa8e0262420c10baa99d70593ea3dc1ecceef7da (patch) | |
tree | ca607056d3d69d071b3244375c0c1a47f1dd4a88 /share | |
parent | 0366d49c6e22f7b168be576c47a5bda6cf0f3ccd (diff) | |
download | spack-aa8e0262420c10baa99d70593ea3dc1ecceef7da.tar.gz spack-aa8e0262420c10baa99d70593ea3dc1ecceef7da.tar.bz2 spack-aa8e0262420c10baa99d70593ea3dc1ecceef7da.tar.xz spack-aa8e0262420c10baa99d70593ea3dc1ecceef7da.zip |
spack setup: remove the command for v0.17.0 (#20277)
spack setup was deprecated in 0.16 and will be removed in 0.17
Follow-up to #18240
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index d74bd67265..09e33ef394 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -333,7 +333,7 @@ _spack() { then SPACK_COMPREPLY="-h --help -H --all-help --color -C --config-scope -d --debug --timestamp --pdb -e --env -D --env-dir -E --no-env --use-env-repo -k --insecure -l --enable-locks -L --disable-locks -m --mock -p --profile --sorted-profile --lines -v --verbose --stacktrace -V --version --print-shell-vars" else - SPACK_COMPREPLY="activate add arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module patch pkg providers pydoc python reindex remove rm repo resource restage setup solve spec stage style test test-env tutorial undevelop uninstall unit-test unload url verify versions view" + SPACK_COMPREPLY="activate add arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module patch pkg providers pydoc python reindex remove rm repo resource restage solve spec stage style test test-env tutorial undevelop uninstall unit-test unload url verify versions view" fi } @@ -1481,15 +1481,6 @@ _spack_restage() { fi } -_spack_setup() { - if $list_options - then - SPACK_COMPREPLY="-h --help -i --ignore-dependencies -n --no-checksum -v --verbose --clean --dirty" - else - _all_packages - fi -} - _spack_solve() { if $list_options then |