blob: 0fa6ea1eb4e1b6db980371fc9ce64fd7a418a457 [file] [log] [blame]
#!/usr/bin/env python3
import time, sys
# Make sure other script runs first if dependency
# is missing.
time.sleep(0.5)
with open(sys.argv[1], 'r') as f:
contents = f.read()
with open(sys.argv[2], 'w') as f:
f.write(contents)