From 62d1a386f648c77ff60e0409322d8472ed8c0bf5 Mon Sep 17 00:00:00 2001 From: ousennin Date: Wed, 1 Feb 2017 18:37:38 +0200 Subject: [PATCH] fixed branches aren't just for birds exercise to work properly with git2+ --- problems/branches_arent_just_for_birds/verify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/branches_arent_just_for_birds/verify.js b/problems/branches_arent_just_for_birds/verify.js index a8c9075804..69e5a0806f 100644 --- a/problems/branches_arent_just_for_birds/verify.js +++ b/problems/branches_arent_just_for_birds/verify.js @@ -10,7 +10,7 @@ var username = "" // verify they've pushed // check the file is in contributors directory -exec('git config user.username', function(err, stdout, stderr) { +exec('git config user.name', function(err, stdout, stderr) { if (err) return console.log(err) username = stdout.trim()