debian-forge/stages/io.weldr.noop
2019-07-17 13:08:22 +02:00

12 lines
271 B
Python
Executable file

#!/usr/bin/python3
import json
import sys
def main(_tree, options):
print("Not doing anything with these options:", json.dumps(options))
if __name__ == '__main__':
args = json.load(sys.stdin)
r = main(args["tree"], args.get("options", {}))
sys.exit(r)