Skip to content

Commit

Permalink
feat: 复制文件的脚本
Browse files Browse the repository at this point in the history
  • Loading branch information
Greatwallcorner committed Jul 7, 2024
1 parent 70e7be5 commit 21d3311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion copyFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def copy_folder(source_folder, destination_folder):
if os.path.isdir(source):
copy_folder(source, destination)
else:
shutil.copy2(source, destination)
shutil.copy(source, destination)

os.makedirs("./res/json")
os.makedirs("./res/jar")
Expand Down

0 comments on commit 21d3311

Please sign in to comment.