diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-10-21 12:17:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-21 12:17:53 +0200 |
commit | abf3a696bd978b91cdf0b8badfbbf72f3c4f3c38 (patch) | |
tree | d7caeab2c0559d850ad73ad1223d7e172c8a0dda /share | |
parent | 1e4732d5fed8bdf35808c658ced2749c325efa33 (diff) | |
download | spack-abf3a696bd978b91cdf0b8badfbbf72f3c4f3c38.tar.gz spack-abf3a696bd978b91cdf0b8badfbbf72f3c4f3c38.tar.bz2 spack-abf3a696bd978b91cdf0b8badfbbf72f3c4f3c38.tar.xz spack-abf3a696bd978b91cdf0b8badfbbf72f3c4f3c38.zip |
Remove "spack buildcache copy" in v0.19.0 (#33437)
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index c6d407b4d5..819b131bca 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -508,7 +508,7 @@ _spack_buildcache() { then SPACK_COMPREPLY="-h --help" else - SPACK_COMPREPLY="create install list keys preview check download get-buildcache-name save-specfile copy sync update-index" + SPACK_COMPREPLY="create install list keys preview check download get-buildcache-name save-specfile sync update-index" fi } @@ -568,10 +568,6 @@ _spack_buildcache_save_specfile() { SPACK_COMPREPLY="-h --help --root-spec --root-specfile -s --specs --specfile-dir" } -_spack_buildcache_copy() { - SPACK_COMPREPLY="-h --help --base-dir --spec-file --destination-url" -} - _spack_buildcache_sync() { SPACK_COMPREPLY="-h --help --manifest-glob --src-directory --src-mirror-name --src-mirror-url --dest-directory --dest-mirror-name --dest-mirror-url" } |