From 39f20ba85b2599e00165ffdd4e636d767a4de56a Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Tue, 9 May 2023 17:20:44 +0200 Subject: [PATCH] fix(make): do not overwrite existing config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b7e9182..ff2e549 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ init.dev:: pyproject.toml poetry install --with dev poetry run pre-commit autoupdate poetry run pre-commit install - cp config/sample.engine-api.ini config/engine-api.ini + cp -n config/sample.engine-api.ini config/engine-api.ini lint:: poetry run python3 -m flake8 . -- GitLab