#!/bin/bash
cd "$(dirname "$0")"
APP=""
if [ -d "CodeRush Arena.app" ]; then
  APP="CodeRush Arena.app"
elif [ -d "$HOME/Downloads/CodeRush Arena.app" ]; then
  APP="$HOME/Downloads/CodeRush Arena.app"
else
  EXTRACTED=$(find "$HOME/Downloads" -maxdepth 2 -type d -name "CodeRush Arena.app" 2>/dev/null | head -n 1)
  APP="$EXTRACTED"
fi
if [ -z "$APP" ] || [ ! -d "$APP" ]; then
  osascript -e 'display dialog "Unpack coderush-arena-mac.zip first, then run this again." buttons {"OK"}'
  exit 1
fi
xattr -cr "$APP"
open "$APP"
