#!/usr/bin/env sh
# Friendly stub. The standalone Asentum CLI binary referenced in the
# docs isn't published yet — anyone curl-piping this URL ends up here
# instead of a 404 JSON error that sh tries to parse and chokes on.
#
# Drop this if/when the real CLI installer is published at /install.

cat >&2 <<MSG

────────────────────────────────────────────────────────────────────
  Asentum standalone CLI — not published yet

  The single-binary CLI is still in build. For now use one of these:

  ▸ Run a validator node (most users with this URL)
      curl -fsSL https://testnet.asentum.com/install/validator | bash

  ▸ Use the Desktop App (Mac / Windows)
      https://www.asentum.com/docs/getting-started/install-cli
      → "Install via Desktop App" in the sidebar

  ▸ Chrome wallet extension
      https://www.asentum.com/docs/getting-started/chrome-extension

  ▸ Telegram wallet bot
      t.me/AsentumWalletBot

  Track the CLI rollout in #devlog on Telegram (t.me/asentum).

────────────────────────────────────────────────────────────────────

MSG
# Exit non-zero so any pipeline that depends on the CLI being installed
# fails loudly rather than continuing silently.
exit 1
