#!/usr/bin/env bash
# ZelWord portable launcher. Sets LD_LIBRARY_PATH so the bundled .so files
# are preferred over (potentially absent) system libs.
HERE="$(cd "$(dirname "$0")" && pwd)"
export LD_LIBRARY_PATH="$HERE/lib:${LD_LIBRARY_PATH:-}"
exec "$HERE/bin/zelword" "$@"
