#!/bin/bash
########################################
# Production Deployment Wrapper
# Deploys from 'main' branch by default
########################################

# Get the directory where this script lives
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

# Call deploy-dev.sh but with main branch as default
exec "$SCRIPT_DIR/deploy-dev.sh" --branch=main "$@"
