From c3065eeb2b8ae2a358a03f05ace98ed85a89caa7 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Tue, 13 Oct 2020 23:33:14 +0200 Subject: Check if gdb returned with status 0 Signed-off-by: Olivier Gayot --- solter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'solter.py') diff --git a/solter.py b/solter.py index c7a22dd..c224ae6 100644 --- a/solter.py +++ b/solter.py @@ -76,7 +76,7 @@ def main(args): logging.debug("Executing: %s", pprint.pformat(cmd)) - subprocess.run(cmd) + subprocess.run(cmd, check=True) if __name__ == "__main__": -- cgit v1.2.3