mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-13 22:09:44 +02:00
24 lines
134 B
Python
24 lines
134 B
Python
import shutil
|
|
|
|
def main():
|
|
print("Copying build files..")
|
|
shutil.copytree(".", "../docker_package/")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
main()
|