From 86c2e755dcfc13ff47eb27dff2e1fd8f211e3601 Mon Sep 17 00:00:00 2001 From: noelmcloughlin Date: Wed, 25 Jan 2023 23:20:16 +0000 Subject: [PATCH] fix(poetry): workaround 'not a git project' X --- {{cookiecutter.project_name}}/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/{{cookiecutter.project_name}}/Makefile b/{{cookiecutter.project_name}}/Makefile index aa10973..fbf6b84 100644 --- a/{{cookiecutter.project_name}}/Makefile +++ b/{{cookiecutter.project_name}}/Makefile @@ -48,7 +48,9 @@ setup: install gen-project gen-examples gendoc git-init-add # install any dependencies required for building install: + git init # issues/33 poetry install + rm -fr .git # issues/33 .PHONY: install # ---