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

I don't know. Avoid the subshell/redirection?

parent 2ad5e6c7
No related branches found
No related tags found
3 merge requests!319update production,!311bump nixpkgs version,!305Automate updating nixpkgs pin in develop branch once a week
...@@ -15,7 +15,7 @@ setup_ssh() { ...@@ -15,7 +15,7 @@ setup_ssh() {
eval $(ssh-agent -s) eval $(ssh-agent -s)
# A GitLab CI/CD variable set for us to use. # A GitLab CI/CD variable set for us to use.
ssh-add <(echo "${UPDATE_NIXPKGS_PRIVATE_SSHKEY_BASE64}" | base64 -d) echo "${UPDATE_NIXPKGS_PRIVATE_SSHKEY_BASE64}" | base64 -d | ssh-add -
# We may not know the git/ssh server's host key yet. In that case, learn # We may not know the git/ssh server's host key yet. In that case, learn
# it and proceed. # it and proceed.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment