mirror of
https://github.com/microsoft/autogen.git
synced 2025-12-18 18:49:27 +00:00
8 lines
141 B
Python
8 lines
141 B
Python
|
|
import os
|
||
|
|
import shutil
|
||
|
|
|
||
|
|
source_dir = os.getcwd()
|
||
|
|
target_dir = "{{ cookiecutter.__final_destination }}"
|
||
|
|
|
||
|
|
shutil.move(source_dir, target_dir)
|