From 5cedcb3182bc82ff5ed0b0e6c4fe26946899a82b Mon Sep 17 00:00:00 2001 From: Yannick DAYER <yannick.dayer@idiap.ch> Date: Tue, 23 Aug 2022 15:16:12 +0200 Subject: [PATCH] Default cookiecutter address as url instead of ssh --- bob/devtools/scripts/new.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bob/devtools/scripts/new.py b/bob/devtools/scripts/new.py index 509c28c3..eb9abdec 100644 --- a/bob/devtools/scripts/new.py +++ b/bob/devtools/scripts/new.py @@ -51,9 +51,9 @@ Examples: ) @click.option( "--template", - default="git@gitlab.idiap.ch:bob/new-project", + default="https://gitlab.idiap.ch/bob/new-project", help="Location of the Cookiecutter project template. Will fetch the latest " - "version on git@gitlab.idiap.ch:bob/new-project if not specified.", + "version on https://gitlab.idiap.ch/bob/new-project if not specified.", ) @verbosity_option() @bdt.raise_on_error -- GitLab