starfighter.sh 467 B

12345678910111213
  1. #!/bin/sh
  2. # This file has been dedicated to the public domain, to the extent
  3. # possible under applicable law, via CC0. See
  4. # http://creativecommons.org/publicdomain/zero/1.0/ for more
  5. # information. This file is offered as-is, without any warranty.
  6. #
  7. # Script which can be used to easily run Starfighter in-place without
  8. # installing on POSIX systems, but not on MacOS.
  9. SCRIPT=$(readlink -f "$0")
  10. SCRIPTPATH=$(dirname "$SCRIPT")
  11. cd $SCRIPTPATH
  12. ./src/starfighter "$@"