From 9011366689b26305281fcb2d412dcacece917e18 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 11 Apr 2017 10:35:39 +1200 Subject: bitbake-diffsigs: fix traceback with no arguments In the move over to argparse we've made the two signature file arguments optional and thus if -t is not in use we need to explicitly check if at least one signature file has been specified - and if not, show an error and the command-line help. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- bin/bitbake-diffsigs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin') diff --git a/bin/bitbake-diffsigs b/bin/bitbake-diffsigs index 884be1e3c..eb2f85979 100755 --- a/bin/bitbake-diffsigs +++ b/bin/bitbake-diffsigs @@ -147,6 +147,10 @@ else: output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, color=color) elif options.sigdatafile1: output = bb.siggen.dump_sigfile(options.sigdatafile1) + else: + logger.error('Must specify signature file(s) or -t/--task') + parser.print_help() + sys.exit(1) except IOError as e: logger.error(str(e)) sys.exit(1) -- cgit 1.2.3-korg