We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea2ab8 commit dd14040Copy full SHA for dd14040
bin/xml2lcovutil.py
@@ -121,8 +121,9 @@ def close(self):
121
self._outf.close()
122
123
if self._args.version and None == self._versionScript:
124
+ lcov = os.path.join(os.path.split(sys.argv[0])[0], 'lcov')
125
cmd = "'%(lcov)s' -a '%(info)s' -o '%(info)s' --version-script '%(vers)s' %(checksum)s--rc compute_file_version=1 --branch-coverage --ignore inconsistent" % {
- 'lcov': os.path.join(os.path.split(sys.argv[0])[0], 'lcov'),
126
+ 'lcov': lcov,
127
'checksum': "--checksum " if self._args.checksum else '',
128
'info': self._args.output,
129
'vers' : self._args.version,
0 commit comments