#!/bin/sh
if [[ $EUID -ne 0  ]]; then
  echo "saleae-logic requires root privileges to run."
  exit 1
fi
cd /usr/share/saleae-logic
exec ./AppRun "$@"
