Skip to content

Commit 283b6b8

Browse files
authored
Merge pull request #40 from buildkite/keithduncan/fix-git-credentials-test
Fix git-credentials test
2 parents c882a16 + 7f42752 commit 283b6b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.buildkite/test_credentials.sh

100644100755
Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ if [[ -d example-private-repository ]] ; then
2929
rm -rf example-private-repository
3030
fi
3131

32+
# Cannot use git+ssh because the ephemeral ssh-agent will be started in the
33+
# Docker container / pid namespace above and be terminated after the process
34+
# s3secrets-helper process exits
3235
echo "+++ Cloning private repository with https"
33-
git clone -- https://github.com/lox/example-private-repository.git example-private-repository
36+
git clone -- https://github.com/buildkite/example-private-repository.git example-private-repository
3437
rm -rf example-private-repository

0 commit comments

Comments
 (0)