2 Commits

Author SHA1 Message Date
6fd257963d 1.4.0 release 2024-11-04 14:50:11 -05:00
4fd2901628 Formatting 2024-11-04 14:47:43 -05:00

View File

@@ -18,7 +18,7 @@
# * Be careful with tabs in heredocs
shopt -s extglob
declare -g SCRIPT_VERSION="1.3.11-dev"
declare -g SCRIPT_VERSION="1.4.0"
declare -g MC_REPO="bullseye" # should match the MC_VERSION
declare -g MC_VERSION="33.0.37" # Do find all replace
declare -g BOARD_URL="https://yabb.jriver.com/interact/index.php/board,86.0.html" # MC33
@@ -479,7 +479,7 @@ install_package() {
|| "${PKG_QUERY[@]}" "$_pkg" &>/dev/null; }; then
pkg_array+=("$_pkg")
else
debug "$_pkg already installed, skipping installation"
debug "$_pkg is already installed, skipping installation"
fi
done
else
@@ -488,7 +488,7 @@ install_package() {
|| "${PKG_QUERY[@]}" "$pkg" &>/dev/null; }; then
pkg_array+=("$pkg")
else
debug "$pkg already installed, skipping installation"
debug "$pkg is already installed, skipping installation"
fi
fi
done