mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
9 lines
252 B
Bash
9 lines
252 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
appdir=/opt/openhuman
|
|
export SHARUN_LDNAME="${SHARUN_LDNAME:-ld-linux-x86-64.so.2}"
|
|
export LD_LIBRARY_PATH="${appdir}/shared/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}"
|
|
|
|
exec "${appdir}/shared/bin/OpenHuman" "$@"
|