import sys, os from args import inputAssets from processasset import processAsset # Setup headers directory. # setOutputDir(args.output) # outputHeaders = [] # # Create output directory if it doesn't exist # if not os.path.exists(args.output): # os.makedirs(args.output) for asset in inputAssets: processAsset(asset)