From ba2bfcc0de54fd8005093ee755d171b0b33e2666 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Mon, 20 Feb 2017 16:46:39 +0000 Subject: [PATCH] Fixing "make confidence" (HT to https://github.com/painhardcore/blackbox/commit/98b928c0e80e2d1911f2db5a558cd5b93375f1da) --- tools/confidence_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/confidence_test.sh b/tools/confidence_test.sh index a2f1656..85dbd93 100755 --- a/tools/confidence_test.sh +++ b/tools/confidence_test.sh @@ -31,6 +31,7 @@ function become_alice() { export GPG_AGENT_INFO="$GPG_AGENT_INFO_ALICE" echo BECOMING ALICE: GNUPGHOME="$GNUPGHOME AGENT=$GPG_AGENT_INFO" mkdir -p .git ; touch .git/config + git init git config user.name "Alice Example" git config user.email alice@example.com } @@ -46,7 +47,6 @@ function become_bob() { PHASE 'Alice creates a repo. She creates secret.txt.' become_alice -git init echo 'this is my secret' >secret.txt