1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 21:04:43 +00:00
oot/tools/ZAPD/copycheck.py

8 lines
239 B
Python
Raw Normal View History

import os
from shutil import copyfile
if (os.environ.get('ZAPD_COPYDIR') != None):
print("Copying ZAPD.out to repo...")
#print(os.environ.get('ZAPD_COPYDIR'))
copyfile("ZAPD.out", os.environ.get('ZAPD_COPYDIR') + "/ZAPD.out")