rebuild.sh: Support Debian-Junior

This commit is contained in:
Roland Clobus 2024-01-12 22:45:00 +01:00
parent a8cceda195
commit 7f28a6dea5
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
1 changed files with 7 additions and 0 deletions

View File

@ -209,6 +209,10 @@ parse_commandline_arguments() {
INSTALLER="live"
PACKAGES="live-task-xfce"
;;
"debian-junior")
INSTALLER="live"
PACKAGES="live-task-debian-junior"
;;
"")
output_echo "Error: Missing --configuration"
exit 1
@ -306,6 +310,9 @@ parse_commandline_arguments() {
then
# Differentiate between lxqt and lxde
CONFIGURATION_SHORT=$(echo ${CONFIGURATION} | cut -c1,3)
elif [ "${CONFIGURATION}" == "debian-junior" ]
then
CONFIGURATION_SHORT="jr"
fi
ISO_VOLUME="d-live ${DEBIAN_VERSION_NUMBER} ${CONFIGURATION_SHORT} ${ARCHITECTURE}"