feat: Removes old uninstall-webapp script.

This commit is contained in:
2025-09-29 18:06:06 -04:00
parent 4ae6389ae8
commit d78ec7f853
2 changed files with 1 additions and 46 deletions

3
webapp
View File

@@ -69,7 +69,7 @@ install() {
uninstall() {
local file=$DEV_ENV/env/webapps/$(basename $1)
local script="$DEV_ENV/env/.local/scripts/uninstall-webapp"
local script="$DEV_ENV/env/.local/scripts/uninstall-desktop-app"
if [[ ! -x $script ]]; then
log "Failed to find uninstall web app script."
@@ -88,7 +88,6 @@ uninstall() {
log "WEBAPP: -- grep: $grep"
apps_dir=$(find $DEV_ENV/env/webapps -mindepth 1 -maxdepth 1 -type f)
for s in $apps_dir; do
if basename $s | grep -vq "$grep"; then
log "grep \"$grep\" filtered out $s"