#!/bin/zsh

# Define the paths
CEP_PLUGIN_NAME="com.loupedeck.cep"
CEP_DEST_DIR="$HOME/Library/Application Support/Adobe/CEP/extensions/$CEP_PLUGIN_NAME"

# Uninstall the plugin if it exists
if [ -e "$CEP_DEST_DIR" ]; then
    echo "Removing $CEP_DEST_DIR"
    rm -rf "$CEP_DEST_DIR"
fi
