diff options
-rw-r--r-- | common/init | 8 |
1 files changed, 7 insertions, 1 deletions
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 <<EOF | fmt --uniform-spacing --width=85 --split-only >./.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>. |