diff options
| author | Andrii Shumada <[email protected]> | 2015-11-06 14:56:03 +0200 |
|---|---|---|
| committer | Andrii Shumada <[email protected]> | 2015-11-06 14:56:03 +0200 |
| commit | 624352aae91033a17ca7c83e3595ec970bcef1c5 (patch) | |
| tree | 3fddc411ca0501cde5874aa50cd9334c45002ba7 /lib/detectLocalGit.js | |
| parent | ee82dd92ac9b65f069d5ed722c0e241ddc30dcee (diff) | |
| download | node-coveralls-624352aae91033a17ca7c83e3595ec970bcef1c5.tar.xz node-coveralls-624352aae91033a17ca7c83e3595ec970bcef1c5.zip | |
rm unneeded options, bump node in travis
Diffstat (limited to 'lib/detectLocalGit.js')
| -rw-r--r-- | lib/detectLocalGit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/detectLocalGit.js b/lib/detectLocalGit.js index 302cd44..773eb70 100644 --- a/lib/detectLocalGit.js +++ b/lib/detectLocalGit.js @@ -3,7 +3,7 @@ var path = require('path'); var REGEX_BRANCH = /^ref: refs\/heads\/(\w+)$/; -module.exports = function detectLocalGit(knownCommit, knownBranch) { +module.exports = function detectLocalGit() { var dir = process.cwd(), gitDir; while (path.resolve('/') !== dir) { gitDir = path.join(dir, '.git'); |
