#!/usr/bin/python3 """ No-op assembler No-op assembler. Produces no output, just prints a JSON dump of its options and then exits. """ import json import sys SCHEMA = """ "additionalProperties": false """ def main(_tree, _output_dir, options): print("Not doing anything with these options:", json.dumps(options)) if __name__ == '__main__': args = json.load(sys.stdin) r = main(args["tree"], args["output_dir"], args.get("options", {})) sys.exit(r)