mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
Update config_menu.sh
This commit is contained in:
parent
dae37db142
commit
68555dcd5c
@ -186,8 +186,10 @@ uninstall_proxmenu() {
|
|||||||
# Remove selected dependencies
|
# Remove selected dependencies
|
||||||
if [ -n "$DEPS_TO_REMOVE" ]; then
|
if [ -n "$DEPS_TO_REMOVE" ]; then
|
||||||
echo "Removing selected dependencies..."
|
echo "Removing selected dependencies..."
|
||||||
|
|
||||||
# Remove quotes and process each package
|
# Remove quotes and process each package
|
||||||
for dep in $(echo "$DEPS_TO_REMOVE" | tr -d '"'); do
|
read -r -a DEPS_ARRAY <<< "$(echo "$DEPS_TO_REMOVE" | tr -d '"')"
|
||||||
|
for dep in "${DEPS_ARRAY[@]}"; do
|
||||||
echo "Removing $dep..."
|
echo "Removing $dep..."
|
||||||
|
|
||||||
# Mark package as auto-installed
|
# Mark package as auto-installed
|
||||||
|
Loading…
x
Reference in New Issue
Block a user