After template creation init git repo

This commit is contained in:
niku 2023-07-22 14:28:13 +02:00
parent 416eb415a9
commit f36146731b

@ -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