Commit 40ef5472 authored by Jan Kiene's avatar Jan Kiene
Browse files

add debug output in script

parent 78bfadf6
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -29,4 +29,6 @@ if __name__ == "__main__":
        help="text output of compilation process to analyze",
    )
    args = vars(parser.parse_args())
    sys.exit(main(args[ "compilation-output" ]))
    ret_code = main(args[ "compilation-output" ])
    print("ret_code: ", ret_code)
    sys.exit(ret_code)