22 lines
646 B
Bash
Executable File
22 lines
646 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
cli=${MTGODOT_CLASSIC_E2E:-}
|
|
if [ -z "$cli" ]; then
|
|
build_root=${MTGODOT_CLASSIC_BUILD:-build-classic}
|
|
cli="$build_root/net_classic_e2e_host"
|
|
fi
|
|
if [ ! -x "$cli" ]; then
|
|
echo "run_classic_e2e.sh: missing $cli; build with -DMTGODOT_BUILD_NET_TOOLS=ON" >&2
|
|
exit 2
|
|
fi
|
|
|
|
host=${MT40250_GAME_HOST:-127.0.0.1}
|
|
port=${MT40250_GAME_PORT:-13000}
|
|
: "${MT40250_ACCOUNT_ID:?set MT40250_ACCOUNT_ID}"
|
|
: "${MT40250_ACCOUNT_PASSWORD:?set MT40250_ACCOUNT_PASSWORD}"
|
|
slot=${MT40250_CHARACTER_SLOT:-0}
|
|
timeout=${MT40250_E2E_TIMEOUT_SECONDS:-30}
|
|
|
|
exec "$cli" "$host" "$port" "$MT40250_ACCOUNT_ID" "$MT40250_ACCOUNT_PASSWORD" "$slot" "$timeout"
|