From f5c6c2f505cc47d19a9499f4b3b961f9ceb48b5f Mon Sep 17 00:00:00 2001 From: Ahmed Ilyas Date: Mon, 9 Sep 2024 16:43:31 +0200 Subject: [PATCH] Fix github username default (#35) --- cookiecutter.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cookiecutter.json b/cookiecutter.json index aeed824..0e8b126 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -1,7 +1,7 @@ { "full_name": "John Doe", "email": "john.doe@physik.hu-berlin.de", - "github_username": "Github organization or profile name, default: foo", + "github_username": "foo", "plugin_name": "foobar", "module_name": "{{ cookiecutter.plugin_name|lower|replace('-', '_') }}", "short_description": "Nomad example template", @@ -21,6 +21,7 @@ "*.html" ], "__prompts__": { - "module_name": "module_name (recommended: press enter to use the default module name)" + "module_name": "module_name (recommended: press enter to use the default module name)", + "github_username": "Github organization or profile name, default: foo" } }