2008-12-12 14:43:24 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# NOTE: Leopard appears not to set PATH for this script, so be absolutely certain
|
|
|
|
|
# never to use any other program without fully specifying the path.
|
2013-06-10 11:03:00 -04:00
|
|
|
#
|
|
|
|
|
|
2012-07-23 18:48:12 +00:00
|
|
|
# this needs to be set so that we can restore the environment when we want to find JACK (or similar)
|
|
|
|
|
export PREBUNDLE_ENV="$(env)"
|
|
|
|
|
|
2008-12-12 14:43:24 +00:00
|
|
|
# all clear, lets go
|
|
|
|
|
# this quoting is all needed to handle installation
|
|
|
|
|
# in folders likes /home/user/Frank's Wild Years
|
|
|
|
|
|
|
|
|
|
CWD="`/usr/bin/dirname \"$0\"`"
|
2014-04-02 17:50:23 -05:00
|
|
|
exec "$CWD/Tracks.bin" "$@"
|