diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2023-03-10 22:41:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 13:41:01 -0800 |
commit | 26fd1ac5b040d6b948797a4e0413e73aaf3e243c (patch) | |
tree | f2416350ac1d87854db2e29f84614ba772ef1ba0 | |
parent | e1301df60c99cdc0e2f8a13fbbd269d3a01349e5 (diff) | |
download | spack-26fd1ac5b040d6b948797a4e0413e73aaf3e243c.tar.gz spack-26fd1ac5b040d6b948797a4e0413e73aaf3e243c.tar.bz2 spack-26fd1ac5b040d6b948797a4e0413e73aaf3e243c.tar.xz spack-26fd1ac5b040d6b948797a4e0413e73aaf3e243c.zip |
hotfix: fix double double quotes (#36005)
-rw-r--r-- | share/spack/gitlab/cloud_pipelines/configs/ci.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/gitlab/cloud_pipelines/configs/ci.yaml b/share/spack/gitlab/cloud_pipelines/configs/ci.yaml index 61de203360..f4953a6125 100644 --- a/share/spack/gitlab/cloud_pipelines/configs/ci.yaml +++ b/share/spack/gitlab/cloud_pipelines/configs/ci.yaml @@ -33,7 +33,7 @@ ci: - - aws s3 sync --exclude "*" --include "*spec.json*" ${SPACK_REMOTE_MIRROR_OVERRIDE}/build_cache /tmp - /sign.sh - aws s3 sync --exclude "*" --include "*spec.json.sig*" /tmp ${SPACK_REMOTE_MIRROR_OVERRIDE}/build_cache - - aws s3 cp /tmp/public_keys ${SPACK_REMOTE_MIRROR_OVERRIDE}/build_cache/_pgp --recursive --exclude "*"" --include "*.pub" + - aws s3 cp /tmp/public_keys ${SPACK_REMOTE_MIRROR_OVERRIDE}/build_cache/_pgp --recursive --exclude "*" --include "*.pub" - any-job: image: "ghcr.io/spack/e4s-ubuntu-18.04:v2021-10-18" |