Update phpmyadmin.sh

This commit is contained in:
CanbiZ 2025-06-23 15:41:03 +02:00
parent ab95f6fb50
commit eb5173f03b

View File

@ -256,7 +256,7 @@ function update_phpmyadmin() {
if is_phpmyadmin_installed; then if is_phpmyadmin_installed; then
echo -e "${YW}⚠️ ${APP} is already installed at ${INSTALL_DIR}.${CL}" echo -e "${YW}⚠️ ${APP} is already installed at ${INSTALL_DIR}.${CL}"
read -r -p "Would you like to Update (1), Uninstall (2) or Cancel (3)? [1/2/3]: " action read -r -p "Would you like to Update (1), Uninstall (2) or Cancel (3)? [1/2/3]: " action
action="${action//[[:space:]]/}" # Eingabe bereinigen action="${action//[[:space:]]/}"
case "$action" in case "$action" in
1) 1)
check_internet check_internet
@ -276,7 +276,7 @@ if is_phpmyadmin_installed; then
esac esac
else else
read -r -p "Would you like to install ${APP}? (y/n): " install_prompt read -r -p "Would you like to install ${APP}? (y/n): " install_prompt
install_prompt="${install_prompt//[[:space:]]/}" # Eingabe bereinigen install_prompt="${install_prompt//[[:space:]]/}"
if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then
check_internet check_internet
install_php_and_modules install_php_and_modules