From ec650550df8dcb69fcdd1035693b9c7e69cf3240 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 13 Jul 2022 16:34:57 -0400
Subject: [PATCH] I don't know.  Avoid the subshell/redirection?

---
 ci-tools/update-nixpkgs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ci-tools/update-nixpkgs b/ci-tools/update-nixpkgs
index 6f6e4e7c..23eb7520 100755
--- a/ci-tools/update-nixpkgs
+++ b/ci-tools/update-nixpkgs
@@ -15,7 +15,7 @@ setup_ssh() {
     eval $(ssh-agent -s)
 
     # 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
     # it and proceed.
-- 
GitLab