diff options
| -rw-r--r-- | lib/convertLcovToCoveralls.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/convertLcovToCoveralls.js b/lib/convertLcovToCoveralls.js index a6d5665..860dc44 100644 --- a/lib/convertLcovToCoveralls.js +++ b/lib/convertLcovToCoveralls.js @@ -64,6 +64,10 @@ const convertLcovToCoveralls = (input, options, cb) => { source_files: [] }; + if (options.flag_name) { + postJson.flag_name = options.flag_name; + } + if (options.git) { postJson.git = options.git; } |
