From 5c44bf14eb503a59dd6bce244ab786c05be103e2 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Mon, 10 Jan 2022 11:23:28 +0100 Subject: [PATCH] docs: do not use a hard coded clone link in project_setup.md --- docs/dev/howto/project_setup.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/dev/howto/project_setup.md b/docs/dev/howto/project_setup.md index e522e73ec..7a12b0d89 100644 --- a/docs/dev/howto/project_setup.md +++ b/docs/dev/howto/project_setup.md @@ -51,11 +51,9 @@ In the following sections, be sure to use the proper `make` tool for your system ## Cloning repository -Now, it's time to get the source code of **concrete-numpy**. You can use the following command to do that. +Now, it's time to get the source code of **concrete-numpy**. -```shell -git clone https://github.com/zama-ai/concrete-numpy-internal.git -``` +Clone the code repository using the link for your favourite communication protocol (ssh or https). ## Setting up environment on your host OS @@ -66,7 +64,7 @@ The following command will not work on Windows if you don't have poetry >= 1.2. ``` ```shell -cd concrete-numpy-internal +cd concrete-numpy make setup_env ```