#!/bin/sh
set -eu

repo=${UNIDESK_TRANS_REPO_ROOT:-/root/unidesk}
if [ ! -f "$repo/scripts/cli.ts" ]; then
  self_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
  repo=$(CDPATH= cd -- "$self_dir/.." && pwd)
fi

exec bun "$repo/scripts/cli.ts" ssh "$@"
