From 4e2ead90cf9862d180abadaa4548c94d5956c851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20De=C3=A1k?= Date: Wed, 29 Jul 2020 13:32:59 +1000 Subject: [PATCH] Work on scripts. --- Scripts/Build/BuildLinux.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Scripts/Build/BuildLinux.sh b/Scripts/Build/BuildLinux.sh index 84271ab..9bcb5a6 100755 --- a/Scripts/Build/BuildLinux.sh +++ b/Scripts/Build/BuildLinux.sh @@ -51,9 +51,11 @@ buildDeb() { if [ ! -f "./debian/changelog" ]; then - # Make the productName lowercase + # Make a lowercase package name to comply with + # Debian changelog formatting requirements. packageName=$( echo "${productName}" | tr "[:upper:]" "[:lower:]" ) + # Create a changelog file. dch --create --controlmaint --distribution unstable \ --package "${packageName}" \ --newversion "${productVersion}" \