#!/usr/bin/env bash
# AWO launcher. Resolves this script's own directory, so the release can live
# anywhere and still find its own dist/.
set -euo pipefail
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
exec node "$HERE/dist/cli.js" "$@"
