Skip to content

Commit c4c0918

Browse files
committed
Fix path hook
1 parent 96ac0af commit c4c0918

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

hooks/post_gen_project.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
import os
21
import shutil
32
from pathlib import Path
43

5-
project_dir = Path.cwd().parent / "{{ cookiecutter.project_name }}"
4+
project_dir = Path.cwd()
65

76
def remove(path: Path) -> None:
87
if path.is_file():

0 commit comments

Comments
 (0)