We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42f716 commit f1293f6Copy full SHA for f1293f6
maintain.py
@@ -105,8 +105,8 @@ def release(version, maxim_path):
105
shutil.copytree(i, out_dir, dirs_exist_ok=True)
106
107
print("Copying Inect & New_Project folders")
108
- shutil.copytree(Path("MaximSDK/Inject"), r_dir.joinpath("Inject"))
109
- shutil.copytree(Path("MaximSDK/New_Project"), r_dir.joinpath("New_Project"))
+ shutil.copytree(Path("MaximSDK/Inject"), r_dir.joinpath("Inject"), dirs_exist_ok=True)
+ shutil.copytree(Path("MaximSDK/New_Project"), r_dir.joinpath("New_Project"), dirs_exist_ok=True)
110
111
print("Copying markdown files")
112
shutil.copy("readme.md", r_dir)
0 commit comments