From 29e069665f5fec2e9f1b607055f9c860c7f9cb02 Mon Sep 17 00:00:00 2001 From: Peter Parente Date: Wed, 29 Jan 2020 09:52:25 -0500 Subject: [PATCH] Fix missed base64 decode from last PR --- base-notebook/hooks/post_push | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/hooks/post_push b/base-notebook/hooks/post_push index d453d940..07c18214 100755 --- a/base-notebook/hooks/post_push +++ b/base-notebook/hooks/post_push @@ -16,7 +16,7 @@ INDEX_FILE="${GIT_SANDBOX}/Home.md" # Configure git so it can push back to GitHub. eval $(ssh-agent -s) -ssh-add <(echo "$DEPLOY_KEY") +ssh-add <(base64 -d <(echo "$DEPLOY_KEY")) ssh-add -l git config --global user.email "jupyter@googlegroups.com" git config --global user.name "Jupyter Docker Stacks"