Fix missed base64 decode from last PR

This commit is contained in:
Peter Parente
2020-01-29 09:52:25 -05:00
parent 8fe5ea98f2
commit 29e069665f

View File

@@ -16,7 +16,7 @@ INDEX_FILE="${GIT_SANDBOX}/Home.md"
# Configure git so it can push back to GitHub. # Configure git so it can push back to GitHub.
eval $(ssh-agent -s) eval $(ssh-agent -s)
ssh-add <(echo "$DEPLOY_KEY") ssh-add <(base64 -d <(echo "$DEPLOY_KEY"))
ssh-add -l ssh-add -l
git config --global user.email "jupyter@googlegroups.com" git config --global user.email "jupyter@googlegroups.com"
git config --global user.name "Jupyter Docker Stacks" git config --global user.name "Jupyter Docker Stacks"