diff options
author | Kimmo Brunfeldt <kimmobrunfeldt@gmail.com> | 2014-07-15 23:51:52 +0300 |
---|---|---|
committer | Kimmo Brunfeldt <kimmobrunfeldt@gmail.com> | 2014-07-15 23:51:52 +0300 |
commit | 4f1490279e6417b9ed90a05d6f535e9789921f1a (patch) | |
tree | abad917d868c4f9ef0699f0a54edbc595a27677a | |
parent | f61b8fe1024b92684e690b175d57a86fb77e537a (diff) | |
download | git-hours-4f1490279e6417b9ed90a05d6f535e9789921f1a.zip git-hours-4f1490279e6417b9ed90a05d6f535e9789921f1a.tar.gz git-hours-4f1490279e6417b9ed90a05d6f535e9789921f1a.tar.bz2 |
Fix branches command line parameter
-rwxr-xr-x | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -132,7 +132,7 @@ function commits(gitPath) { branchNames = getBranchNames(gitPath); } - branchNames.map(function(branchName) { + Promise.map(branchNames, function(branchName) { return getBranch(repo, branchName); }).map(function(branch) { return getBranchCommits(branch); |