diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index d5518af..979b8d1 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -5,6 +5,8 @@ GO_PACKAGES = [ ] def main() -> int: + subprocess.run(["git", "init"]) + for package in GO_PACKAGES: subprocess.run(["go", "get", "-u", package]) return 0