summaryrefslogtreecommitdiff
path: root/bustle.sh
blob: 2be1b507fb2b7a7215e4e995fd63709b2f0c8bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

root="$(dirname $(readlink -f ${0}))"

bustle_datadir="${root}"
export bustle_datadir

LD_LIBRARY_PATH="${root}/lib:${LD_LIBRARY_PATH}"
export LD_LIBRARY_PATH

bustle="${root}"/bin/bustle

exec $bustle "${@}"