@@ -16,8 +16,8 @@ readonly SCRIPT=$(basename "$0")
16
16
17
17
# SCRIPT METADATA
18
18
readonly dir=$( cd -P -- " $( dirname -- " $0 " ) " && pwd -P)
19
- readonly REL_NAME=" 7.0 .0"
20
- readonly REL_NUM=700
19
+ readonly REL_NAME=" 7.1 .0"
20
+ readonly REL_NUM=710
21
21
22
22
# Handle Use interrupt
23
23
# trap ctrl-c and call ctrl_c()
@@ -340,13 +340,13 @@ function _init_script_variables()
340
340
341
341
342
342
# -------------------------- Release codenames --------------------------------------
343
- readonly codename_latest_release=" groovy "
344
- readonly codename_previous_release=" focal "
343
+ readonly codename_latest_release=" hirsute "
344
+ readonly codename_previous_release=" groovy "
345
345
346
346
# 404 is a placeholder which is set when there are
347
347
# no suitable releases which can use this feature or
348
348
# the release is unknown or too early in developement.
349
- readonly codename_upcoming_release=" hirsute "
349
+ readonly codename_upcoming_release=" 404 "
350
350
351
351
readonly codename_current_lts=" focal"
352
352
readonly codename_previous_lts=" bionic"
@@ -550,7 +550,6 @@ function _fix_ubuntu_derivatives()
550
550
jessie) _eol_message " June 2020" ;;
551
551
xenial) _eol_message " April 2021" ;;
552
552
sarah | serena | sonya | sylvia) _eol_message " April 2021" ;;
553
- tara | tessa | tina | tricia) _eol_message " April 2021" ;;
554
553
loki) _eol_message " April 2021" ;;
555
554
* ) _log_error " Unknown or unsupported release($code_name ) !!"
556
555
_script_exit_log;
@@ -738,13 +737,16 @@ function _check_bool()
738
737
g_var=" ${1} "
739
738
param_bool=" ${2} "
740
739
case " ${param_bool} " in
741
- true | True | TRUE | Yes | yes | YES | 1 ) declare -g ${g_var} =" true"
740
+ true | True | TRUE | Yes | yes | YES | 1 ) # shellcheck disable=SC2086
741
+ declare -g ${g_var} =" true"
742
742
_log_var " $g_var "
743
743
;;
744
- false | False | FALSE | No | no | NO | 0 ) declare -g ${g_var} =" false"
744
+ false | False | FALSE | No | no | NO | 0 ) # shellcheck disable=SC2086
745
+ declare -g ${g_var} =" false"
745
746
_log_var " $g_var "
746
747
;;
747
- * ) declare -g ${g_var} =" ${default_val} "
748
+ * ) # shellcheck disable=SC2086
749
+ declare -g ${g_var} =" ${default_val} "
748
750
_log_var " $g_var "
749
751
;;
750
752
esac
@@ -1425,6 +1427,7 @@ deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
1425
1427
fi
1426
1428
1427
1429
# Google Cloud SDK
1430
+ # shellcheck disable=SC2235
1428
1431
if [[ $add_gcp_repo == " true" ]] || ( [[ ${add_gcsfuse_repo} == " true" ]] && [[ ${ARCH} == " amd64" ]] ) ; then
1429
1432
_log_debug " Adding GCP packaging keys"
1430
1433
__add_repo_keys --format " gpg" \
@@ -1465,6 +1468,7 @@ deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main"
1465
1468
fi
1466
1469
1467
1470
# Microsoft Keys
1471
+ # shellcheck disable=SC2235
1468
1472
if ( [[ $add_azurecli_repo == " true" ]] || [[ ${add_vscode_repo} == " true" ]] || [[ ${add_edge_repo} == " true" ]] || [[ ${add_msteams_repo} == " true" ]] ) && [[ $ARCH == " amd64" ]]; then
1469
1473
_log_debug " Adding Microsoft keys."
1470
1474
__add_repo_keys --format " asc" \
0 commit comments