diff options
author | Patrick Gartung <gartung@fnal.gov> | 2020-02-25 11:01:59 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-25 11:01:59 -0600 |
commit | 676eb56ab2379e4d1b3958aad382d81cb012c560 (patch) | |
tree | 8455bf40d88b4b4e8c953747370514e6f7e3ed86 /share | |
parent | 8d8925c725491cf028ef6c1b93e431dcb200f439 (diff) | |
download | spack-676eb56ab2379e4d1b3958aad382d81cb012c560.tar.gz spack-676eb56ab2379e4d1b3958aad382d81cb012c560.tar.bz2 spack-676eb56ab2379e4d1b3958aad382d81cb012c560.tar.xz spack-676eb56ab2379e4d1b3958aad382d81cb012c560.zip |
Buildcache cmd: add install -o/--otherarch option for installing macOS buildcaches on linux (#15192)
* Buildcache command: add install option -o/--otherarch
This will allow matching specs from other archs, for example
installing macOS buildcaches on linux hosts.
* spack commands --update-completion
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 8f677adbf9..4082b7ff41 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -391,7 +391,7 @@ _spack_buildcache_create() { _spack_buildcache_install() { if $list_options then - SPACK_COMPREPLY="-h --help -f --force -m --multiple -a --allow-root -u --unsigned" + SPACK_COMPREPLY="-h --help -f --force -m --multiple -a --allow-root -u --unsigned -o --otherarch" else _all_packages fi |