We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6610b68 commit 0e64e6dCopy full SHA for 0e64e6d
bin/compile
@@ -15,8 +15,8 @@ if [ "$ssh_key" != "" ]; then
15
echo "-----> Running SSH private key setup"
16
17
echo "$ssh_key" | base64 --decode > id_rsa
18
- eval `ssh-agent -s` | indent || exit $?
19
- ssh-add id_rsa | indent || exit $?
+ (eval `ssh-agent -s` || exit $?) | indent
+ (ssh-add id_rsa || exit $?) | indent
20
ssh -oStrictHostKeyChecking=no -T git@github.com | indent
21
rm id_rsa
22
else
0 commit comments