Open
Description
Using the commitAll option does not actually commit all files.
Notice that the ternary based on commitAll
results in an empty string instead of the expected -a
commit option.
(argv.commitAll ? '' : (argv.infile + toAdd))
The expected change
(argv.commitAll ? ' -a ' : (argv.infile + toAdd))