diff options
author | Vanessasaurus <814322+vsoch@users.noreply.github.com> | 2021-06-15 15:36:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 14:36:02 -0700 |
commit | 53dae0040a6bba725b8a23cf60f4cfe7023bec80 (patch) | |
tree | 6e937c63196f74d05c1db257c240c1de72808e92 /share | |
parent | cdc28a96232f40a112adef6dd7dcbb79388c8e6d (diff) | |
download | spack-53dae0040a6bba725b8a23cf60f4cfe7023bec80.tar.gz spack-53dae0040a6bba725b8a23cf60f4cfe7023bec80.tar.bz2 spack-53dae0040a6bba725b8a23cf60f4cfe7023bec80.tar.xz spack-53dae0040a6bba725b8a23cf60f4cfe7023bec80.zip |
adding spack upload command (#24321)
this will first support uploads for spack monitor, and eventually could be
used for other kinds of spack uploads
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
Co-authored-by: vsoch <vsoch@users.noreply.github.com>
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 6bf88fee60..8b41436283 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -333,7 +333,7 @@ _spack() { then SPACK_COMPREPLY="-h --help -H --all-help --color -c --config -C --config-scope -d --debug --timestamp --pdb -e --env -D --env-dir -E --no-env --use-env-repo -k --insecure -l --enable-locks -L --disable-locks -m --mock -p --profile --sorted-profile --lines -v --verbose --stacktrace -V --version --print-shell-vars" else - SPACK_COMPREPLY="activate add analyze arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module patch pkg providers pydoc python reindex remove rm repo resource restage solve spec stage style test test-env tutorial undevelop uninstall unit-test unload url verify versions view" + SPACK_COMPREPLY="activate add analyze arch blame build-env buildcache cd checksum ci clean clone commands compiler compilers concretize config containerize create deactivate debug dependencies dependents deprecate dev-build develop docs edit env extensions external fetch find flake8 gc gpg graph help info install license list load location log-parse maintainers mark mirror module monitor patch pkg providers pydoc python reindex remove rm repo resource restage solve spec stage style test test-env tutorial undevelop uninstall unit-test unload url verify versions view" fi } @@ -1323,6 +1323,10 @@ _spack_module_tcl_loads() { fi } +_spack_monitor() { + SPACK_COMPREPLY="-h --help --monitor --monitor-save-local --monitor-no-auth --monitor-tags --monitor-keep-going --monitor-host --monitor-prefix" +} + _spack_patch() { if $list_options then |