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

10 lines
263 B
Python
Raw Normal View History

#!/usr/bin/env python3
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")