Add a command to bootstrap Spack right now (#33407)

This commit is contained in:
Massimiliano Culpo
2022-10-19 19:25:20 +02:00
committed by GitHub
parent 25cbb34579
commit 7ad7fde09c
2 changed files with 17 additions and 1 deletions

View File

@@ -412,10 +412,14 @@ _spack_bootstrap() {
then
SPACK_COMPREPLY="-h --help"
else
SPACK_COMPREPLY="status enable disable reset root list trust untrust add remove mirror"
SPACK_COMPREPLY="now status enable disable reset root list trust untrust add remove mirror"
fi
}
_spack_bootstrap_now() {
SPACK_COMPREPLY="-h --help"
}
_spack_bootstrap_status() {
SPACK_COMPREPLY="-h --help --optional --dev"
}