← back to Commercialrealestate
scripts/install-alerts-launchd.sh
13 lines
#!/bin/bash
# One-shot installer for the CRCP email-alerts daily-7am launchd job.
# Run: bash ~/Projects/commercialrealestate/scripts/install-alerts-launchd.sh
set -e
PLIST="$HOME/Projects/commercialrealestate/scripts/com.steve.crcp-email-alerts.plist"
DEST="$HOME/Library/LaunchAgents/com.steve.crcp-email-alerts.plist"
cp "$PLIST" "$DEST"
# reload cleanly if already present
launchctl bootout "gui/$(id -u)/com.steve.crcp-email-alerts" 2>/dev/null || true
launchctl bootstrap "gui/$(id -u)" "$DEST"
echo "--- installed. status: ---"
launchctl list | grep crcp-email-alerts || echo "NOT loaded — check the plist path"