From c87cd64616a833fda03deefdaa0623e9709cecbe Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 30 Sep 2024 17:55:39 +0200 Subject: fix(common/init): Only add a description when it exists Otherwise, the default template would contain a extra "- " after the name, when the description is left empty. --- common/init | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/init b/common/init index 104bd30..9ee0462 100644 --- a/common/init +++ b/common/init @@ -125,6 +125,12 @@ fi prompt LICENSE_URL "The url of the license" "$default_license_url" if [ -e ./.reuse/templates/default.jinja2 ]; then + if [ -n "$DESCRIPTION" ]; then + description_str=" - $DESCRIPTION" + else + description_str="" + fi + cat <./.reuse/templates/default.jinja2 {% for copyright_line in copyright_lines %} {{ copyright_line }} @@ -136,7 +142,7 @@ SPDX-FileContributor: {{ contributor_line }} SPDX-License-Identifier: {{ expression }} {% endfor %} -This file is part of $APPLICATION_NAME_STYLIZED - $DESCRIPTION. +This file is part of $APPLICATION_NAME_STYLIZED$description_str. You should have received a copy of the License along with this program. If not, see <$LICENSE_URL>. -- cgit 1.4.1