Skip to content

Commit 7423610

Browse files
committed
Fix install scripts: point to OpenAnalystInc/cli releases
1 parent 0a4f00b commit 7423610

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# OpenAnalyst CLI Installer — Windows PowerShell
2-
# Usage: irm https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.ps1 | iex
2+
# Usage: irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex
33

44
$ErrorActionPreference = "Continue"
55
$ProgressPreference = "SilentlyContinue"
66
try { [Console]::OutputEncoding = [System.Text.Encoding]::UTF8 } catch {}
77

8-
$Repo = "OpenAnalystInc/openanalyst-cli"
8+
$Repo = "OpenAnalystInc/cli"
99
$BinaryName = "openanalyst.exe"
1010
$InstallDir = "$env:USERPROFILE\.openanalyst\bin"
1111
$ConfigDir = "$env:USERPROFILE\.openanalyst"
@@ -201,7 +201,7 @@ Dim " $BL$(Repeat $H $BoxW)$BR"; Nl
201201
Nl
202202

203203
Dim " Documentation: "
204-
Acc "github.com/OpenAnalystInc/openanalyst-cli"
204+
Acc "github.com/OpenAnalystInc/cli"
205205
Nl
206206
Dim " Support: "
207207
Acc "support@openanalyst.com"

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ set -e
55
# OpenAnalyst CLI Installer — macOS / Linux
66
#
77
# Usage:
8-
# curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/openanalyst-cli/main/install.sh | bash
8+
# curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash
99
#
1010
# Or with a specific version:
1111
# curl -fsSL ... | bash -s -- --version 1.0.89
1212
# ─────────────────────────────────────────────────
1313

14-
REPO="OpenAnalystInc/openanalyst-cli"
14+
REPO="OpenAnalystInc/cli"
1515
BINARY_NAME="openanalyst"
1616
INSTALL_DIR="${OPENANALYST_INSTALL_DIR:-$HOME/.local/bin}"
1717
CONFIG_DIR="$HOME/.openanalyst"
@@ -175,7 +175,7 @@ if [ ! -f "$CONFIG_DIR/.env" ]; then
175175
# Uncomment and fill in the providers you want to use.
176176
# Or run `openanalyst login` for interactive browser-based setup.
177177
#
178-
# Docs: https://github.com/OpenAnalystInc/openanalyst-cli
178+
# Docs: https://github.com/OpenAnalystInc/cli
179179
# ═══════════════════════════════════════════════════════════════════
180180
181181
# ── Provider API Keys ─────────────────────────────────────────────
@@ -276,7 +276,7 @@ echo ""
276276
if [ -n "$SHELL_RC" ]; then
277277
echo -e " ${DIM}Reload your shell: source ${SHELL_RC}${R}"
278278
fi
279-
echo -e " ${DIM}Documentation: github.com/OpenAnalystInc/openanalyst-cli${R}"
279+
echo -e " ${DIM}Documentation: github.com/OpenAnalystInc/cli${R}"
280280
echo -e " ${DIM}Support: anit@openanalyst.com${R}"
281281
echo ""
282282
echo ""

0 commit comments

Comments
 (0)