Skip to content

Commit

Permalink
Fix missed base64 decode from last PR
Browse files Browse the repository at this point in the history
  • Loading branch information
parente committed Jan 29, 2020
1 parent 8fe5ea9 commit 29e0696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base-notebook/hooks/post_push
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 29e0696

Please sign in to comment.