#!/usr/bin/env sh
/usr/bin/bevsnake-launcher "$@"
status=$?
if [ "$status" -ne 0 ]; then
  printf '\nBevsnake exited with status %s. Press Enter to close.' "$status"
  read _
fi
exit "$status"
