Skip to content

Commit

Permalink
testing copy 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Nov 24, 2024
1 parent 89e001e commit e8f9b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Webserver/Programs/File_manager/file_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def main(args):
for working_item in list_of_items:
spinner.start(text=f"Moving {working_item} to {temp_workfolder}")
temp_working_item = os.path.join(temp_workfolder, working_item)
shutil.copy(working_item, temp_working_item)
shutil.copy2(working_item, temp_working_item)
spinner.start(text=f"Packing {temp_working_item}")
build_tar(temp_working_item)
spinner.succeed(text=f"Packed {temp_working_item}")
Expand Down

0 comments on commit e8f9b51

Please sign in to comment.