#!/bin/sh
APP=/usr/share/sentinel-browser/sentinel_browser/app.py
if [ ! -f "$APP" ]; then
  HERE=$(dirname "$(readlink -f "$0")")
  APP="$HERE/../share/sentinel-browser/sentinel_browser/app.py"
fi
exec /usr/bin/python3 "$APP" "$@"
