#!/bin/sh

os=$(sw_vers -productVersion)
dir=$(dirname "$0")

if [[ "${os}" == "14."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "13."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "12."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "11."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "10."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "9."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "8."* ]]; then
    exec "${dir}/URLSchemerPro"
elif [[ "${os}" == "7."* ]]; then
    exec "${dir}/URLSchemerPro"
else
    exec "${dir}/URLSchemerPro"
fi
