diff options
author | Nils Vu <nfischervu@gmail.com> | 2022-03-19 23:30:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-19 16:30:46 -0600 |
commit | bfb6873ce3cf9e56f6defb220027aa4b4f7ac0da (patch) | |
tree | f43f4171a862eec2cc97dca97787af8958a46ab4 /share | |
parent | 71c9334e3078661868dd1e17717e8e5eaf7374e2 (diff) | |
download | spack-bfb6873ce3cf9e56f6defb220027aa4b4f7ac0da.tar.gz spack-bfb6873ce3cf9e56f6defb220027aa4b4f7ac0da.tar.bz2 spack-bfb6873ce3cf9e56f6defb220027aa4b4f7ac0da.tar.xz spack-bfb6873ce3cf9e56f6defb220027aa4b4f7ac0da.zip |
Revert "Add command for reading a json-based DB description (#24894)" (#29603)
This reverts commit 531b1c5c3dcc9bc7bec27e223608aed477e94dbd.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 7bbb3ba211..9e4586abbb 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1017,7 +1017,7 @@ _spack_external() { then SPACK_COMPREPLY="-h --help" else - SPACK_COMPREPLY="find list read-cray-manifest" + SPACK_COMPREPLY="find list" fi } @@ -1034,10 +1034,6 @@ _spack_external_list() { SPACK_COMPREPLY="-h --help" } -_spack_external_read_cray_manifest() { - SPACK_COMPREPLY="-h --help --file --directory --dry-run" -} - _spack_fetch() { if $list_options then @@ -1795,7 +1791,7 @@ _spack_undevelop() { _spack_uninstall() { if $list_options then - SPACK_COMPREPLY="-h --help -f --force -R --dependents -y --yes-to-all -a --all --origin" + SPACK_COMPREPLY="-h --help -f --force -R --dependents -y --yes-to-all -a --all" else _installed_packages fi |