mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 16:15:07 -04:00
10 lines
263 B
Python
10 lines
263 B
Python
|
#!/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")
|