blob: 3b1de6f0b483f826c5d39ad62c68f12d9a930a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
set -e
root="$(dirname ${0}})"
bustle_datadir="${root}"
export bustle_datadir
bustle="${root}"/dist/build/bustle/bustle
cabal build 1>&2
exec $bustle "${@}"
|