FIX: Syntax error - missing fi in extract_user_from_path function

Line 1493 had ';;' instead of 'fi' to close the if statement in the default
case of the extract_user_from_path function. This caused syntax errors.

Changed:
            ;;
    esac

To:
            fi
            ;;
    esac

Script syntax now verified OK.
This commit is contained in:
cschantz
2026-03-02 21:28:52 -05:00
parent 425cfcc7da
commit c4e7b88938
@@ -1490,6 +1490,7 @@ extract_user_from_path() {
user=$(stat -c %U "$site_path" 2>/dev/null) user=$(stat -c %U "$site_path" 2>/dev/null)
if [ -z "$user" ]; then if [ -z "$user" ]; then
user="www-data" user="www-data"
fi
;; ;;
esac esac