diff options
author | Omar Padron <omar.padron@kitware.com> | 2020-06-25 14:27:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 14:27:20 -0400 |
commit | 7c54aa2eb088398d626b8ce4354623d62f3a4638 (patch) | |
tree | 7f33430924096b93bfbd2a52f45a3e5745321b26 /share | |
parent | 096bd69a949225590feeaeaf16545d673c4cee6d (diff) | |
download | spack-7c54aa2eb088398d626b8ce4354623d62f3a4638.tar.gz spack-7c54aa2eb088398d626b8ce4354623d62f3a4638.tar.bz2 spack-7c54aa2eb088398d626b8ce4354623d62f3a4638.tar.xz spack-7c54aa2eb088398d626b8ce4354623d62f3a4638.zip |
add workaround for gitlab ci needs limit (#17219)
* add workaround for gitlab ci needs limit
* fix style/address review comments
* convert filter obj to list
* update command completion
* remove dict comprehension
* add workaround tests
* fix sorting issue between disparate types
* add indeces to format
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 ffd7596416..eff9e15b2c 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -474,7 +474,7 @@ _spack_ci() { } _spack_ci_generate() { - SPACK_COMPREPLY="-h --help --output-file --copy-to --spack-repo --spack-ref --optimize" + SPACK_COMPREPLY="-h --help --output-file --copy-to --spack-repo --spack-ref --optimize --dependencies" } _spack_ci_rebuild() { |