htmlreport: don't just hang if --file is not specified. Print a warning and exit.
This commit is contained in:
parent
fad50de311
commit
8fff48ed7b
|
@ -384,6 +384,8 @@ if __name__ == '__main__':
|
||||||
if not os.path.exists(options.file):
|
if not os.path.exists(options.file):
|
||||||
parser.error('cppcheck xml file: %s not found.' % options.file)
|
parser.error('cppcheck xml file: %s not found.' % options.file)
|
||||||
input_file = io.open(options.file, 'r')
|
input_file = io.open(options.file, 'r')
|
||||||
|
else:
|
||||||
|
parser.error('No cppcheck xml file specified. (--file=)')
|
||||||
|
|
||||||
# Parse the xml file and produce a simple list of errors.
|
# Parse the xml file and produce a simple list of errors.
|
||||||
print('Parsing xml report.')
|
print('Parsing xml report.')
|
||||||
|
|
Loading…
Reference in New Issue