about summary refs log tree commit diff stats
path: root/build/shell/init
diff options
context:
space:
mode:
Diffstat (limited to 'build/shell/init')
-rw-r--r--build/shell/init8
1 files changed, 7 insertions, 1 deletions
diff --git a/build/shell/init b/build/shell/init
index 104bd30..9ee0462 100644
--- a/build/shell/init
+++ b/build/shell/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>.