Skip to content

Commit d0f23c7

Browse files
committed
fix(docs): align fork-owned installer references
1 parent 1ba216e commit d0f23c7

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/branch-e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ jobs:
3737
image-tag: ${{ github.sha }}
3838
runner: build-arm64
3939
run-tool-smoke-validations: true
40+
run-installer-selection-smoke: true

.github/workflows/release-canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Install CLI (default / latest)
4848
run: |
4949
set -euo pipefail
50-
curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/main/install.sh | sh
50+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
5151
5252
- name: Verify CLI installation
5353
run: |
@@ -132,7 +132,7 @@ jobs:
132132
- name: Install CLI from published install script
133133
run: |
134134
set -euo pipefail
135-
curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/main/install.sh | OPENSHELL_VERSION=${{ steps.release.outputs.tag }} OPENSHELL_INSTALL_DIR=/usr/local/bin sh
135+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | OPENSHELL_VERSION=${{ steps.release.outputs.tag }} OPENSHELL_INSTALL_DIR=/usr/local/bin sh
136136
137137
- name: Verify CLI installation
138138
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ OpenShell is built agent-first. The project ships with agent skills for everythi
2424
**Binary (recommended):**
2525

2626
```bash
27-
curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/main/install.sh | sh
27+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
2828
```
2929

3030
**From PyPI (requires [uv](https://docs.astral.sh/uv/)):**

docs/get-started/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For a complete list of requirements, refer to {doc}`../reference/support-matrix`
4141
Run the install script:
4242

4343
```console
44-
$ curl -LsSf https://raw.githubusercontent.com/NVIDIA/OpenShell/main/install.sh | sh
44+
$ curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
4545
```
4646

4747
If you prefer [uv](https://docs.astral.sh/uv/):

install.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Install the OpenShell CLI binary.
66
#
77
# Usage:
8-
# curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | sh
8+
# curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
99
#
1010
# Or run directly:
1111
# ./install.sh
@@ -49,7 +49,7 @@ usage() {
4949
install.sh — Install the OpenShell CLI
5050
5151
USAGE:
52-
curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | sh
52+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
5353
./install.sh [OPTIONS]
5454
5555
OPTIONS:
@@ -68,16 +68,16 @@ ENVIRONMENT VARIABLES:
6868
6969
EXAMPLES:
7070
# Install latest release
71-
curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | sh
71+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | sh
7272
7373
# Install a specific version
74-
curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | OPENSHELL_VERSION=v0.0.9 sh
74+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | OPENSHELL_VERSION=v0.0.9 sh
7575
7676
# Install to /usr/local/bin
77-
curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | OPENSHELL_INSTALL_DIR=/usr/local/bin sh
77+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | OPENSHELL_INSTALL_DIR=/usr/local/bin sh
7878
7979
# Install from a different fork release repo
80-
curl -LsSf https://raw.githubusercontent.com/abols/OpenShell/main/install.sh | OPENSHELL_RELEASE_REPO=example/custom-openshell sh
80+
curl -LsSf https://raw.githubusercontent.com/linuxdevel/OpenShell/main/install.sh | OPENSHELL_RELEASE_REPO=example/custom-openshell sh
8181
8282
# Validate later setup selections while installing the CLI
8383
./install.sh --tool claude-code --vendor anthropic --model-path claude-sonnet-4

0 commit comments

Comments
 (0)