#!/bin/bash # Deployment script for AODH Pack TARGET_DIR="/home/aodhan/gitclones/ComfyUI/custom_nodes/aodh-pack" SOURCE_DIR="$(pwd)" echo "Deploying AODH Pack to $TARGET_DIR..." # Create target directory if it doesn't exist mkdir -p "$TARGET_DIR" # Sync files, excluding git and other unnecessary files # Using cp -r for simplicity, but rsync would be better if available cp -r "$SOURCE_DIR/__init__.py" "$TARGET_DIR/" cp -r "$SOURCE_DIR/nodes" "$TARGET_DIR/" cp -r "$SOURCE_DIR/README.md" "$TARGET_DIR/" cp -r "$SOURCE_DIR/requirements.txt" "$TARGET_DIR/" echo "Deployment complete!"