Skip to content
Snippets Groups Projects
Commit 9fee975d authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Merge branch '68.xdg_runtime_dir' into 'develop'

Stop trying to hit a specific directory with mktemp

Closes #68

See merge request !124
parents c0d604af 6495c0d4
No related branches found
No related tags found
Loading
Pipeline #874 passed
......@@ -84,8 +84,7 @@ system-tests:
- |
# The environment variable is configured with GitLab using Terraform so
# we can retain some bare minimum level of confidentiality.
KEY_DIR="$(mktemp -d -p "${XDG_RUNTIME_DIR}-deploy_key")"
KEY_PATH="${KEY_DIR}/deploy_key"
KEY_PATH="$(mktemp -d)/deploy_key"
base64 --decode "${PRIVATESTORAGEIO_STAGING_SSH_DEPLOY_KEY}" > "${KEY_PATH}"
# Update the deployment
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment