From 5831aa31af18a8288ec604d7ec7b00cba824624c Mon Sep 17 00:00:00 2001 From: iacopo Date: Thu, 7 Mar 2024 07:00:01 +0100 Subject: [PATCH] justfile: fix help spacing --- justfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/justfile b/justfile index b651d81..a9138f8 100644 --- a/justfile +++ b/justfile @@ -19,8 +19,10 @@ MIN_COVERAGE := '100' echo "# INSTALL\n" echo "## Install using poetry\n" echo " poetry install" + echo echo "If you only want to install the project’s runtime dependencies:\n" echo " poetry install --only main" + echo echo "Ensure that the locked dependencies in the poetry.lock file are the only ones present in the environment, removing anything that’s not necessary." echo " poetry install --sync" echo