Browse Source

Updated to latest releases

devel
John Laufert 3 years ago
parent
commit
5ea6c6ef4f
No known key found for this signature in database GPG Key ID: 81A570CA3F2D6514
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      tux-disc.sh

+ 6
- 6
tux-disc.sh View File

@@ -37,7 +37,7 @@
DATE=$(date +%Y%m%d)

# Sets LTS versions
UBUNTU_1804="18.04.4"
UBUNTU_1804="18.04.5"
UBUNTU_2004="20.04.1"

# Makes the ISO directory if not present.
@@ -57,7 +57,7 @@ echo "
## ##
##########################################

Copyright (C) 2017 John Laufert
Copyright (C) 2020 John Laufert

This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
@@ -111,10 +111,10 @@ else
# will not be given that option when choosing Ubuntu Budgie.
if [[ ${FLAVOR} = "Ubuntu Budgie" ]]; then
echo 'Please select an Ubuntu release to download'
select RELEASE in "${UBUNTU_1804}" "19.10" "${UBUNTU_2004}"
select RELEASE in "${UBUNTU_1804}" "${UBUNTU_2004}" "20.10"
do
case ${RELEASE} in
"${UBUNTU_1804}"|"19.10"|"${UBUNTU_2004}")
"${UBUNTU_1804}"|"${UBUNTU_2004}"|"20.10")
break
;;
*)
@@ -126,10 +126,10 @@ else
# If the flavor they want to download isn't Ubuntu Budgie, then
# they get to pick from all of the currently suportded releases.
echo 'Please select an Ubuntu release to download'
select RELEASE in "16.04.6" "${UBUNTU_1804}" "19.10" "${UBUNTU_2004}"
select RELEASE in "16.04.7" "${UBUNTU_1804}" "${UBUNTU_2004}" "20.10"
do
case ${RELEASE} in
"16.04.6"|"${UBUNTU_1804}"|"19.10"|"${UBUNTU_2004}")
"16.04.7"|"${UBUNTU_1804}"|"${UBUNTU_2004}"|"20.10")
break
;;
*)


Loading…
Cancel
Save