Skip to content

Commit 29e0696

Browse files
committed
Fix missed base64 decode from last PR
1 parent 8fe5ea9 commit 29e0696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base-notebook/hooks/post_push

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ INDEX_FILE="${GIT_SANDBOX}/Home.md"
1616

1717
# Configure git so it can push back to GitHub.
1818
eval $(ssh-agent -s)
19-
ssh-add <(echo "$DEPLOY_KEY")
19+
ssh-add <(base64 -d <(echo "$DEPLOY_KEY"))
2020
ssh-add -l
2121
git config --global user.email "[email protected]"
2222
git config --global user.name "Jupyter Docker Stacks"

0 commit comments

Comments
 (0)