Skip to content

Commit 8c7af52

Browse files
colyerdengShawnDen-coder
authored andcommitted
fix: fix template hooks
1 parent f48e77f commit 8c7af52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo_scaffold/templates/template-python/hooks/post_gen_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def setup_environment(self) -> None:
112112

113113
try:
114114
print("Installing project dependencies...")
115-
subprocess.run(["task", "init"], check=True)
115+
subprocess.run(["uv", "sync"], check=True)
116116
print("✅ Dependencies installed successfully")
117117
except subprocess.CalledProcessError as e:
118118
print(f"❌ Failed to install dependencies: {e}")

0 commit comments

Comments
 (0)