diff --git a/scripts/runfvp b/scripts/runfvp index be047689..52d8f20b 100755 --- a/scripts/runfvp +++ b/scripts/runfvp @@ -164,4 +164,7 @@ def runfvp(args): sys.exit(subprocess.run(cli).returncode) if __name__ == "__main__": - runfvp(sys.argv) + try: + runfvp(sys.argv) + except KeyboardInterrupt: + pass