Skip to content

Commit f78aa61

Browse files
authored
fix: Update codex commands version (#56)
it seems release-please didn't update the version. potentially it is due to having multiple version strings in the same line given that the first version string was updated but not the second. I updated the commands to only use one.
1 parent aaf87ed commit f78aa61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ Run the `claude` command to start the agent, then follow these steps:
7878

7979
**macOS / Linux:**
8080
```bash
81-
curl -sSL https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/0.1.2/codex-install.sh | bash -s -- 0.1.1
81+
CODEX_TAG="0.1.2"; curl -sSL https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$CODEX_TAG/codex-install.sh | bash -s -- $CODEX_TAG
8282
```
8383

8484
**Windows:**
8585
```powershell
86-
$env:CODEX_TAG="0.1.2"; irm https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/0.1.1/codex-install.ps1 | iex
86+
$env:CODEX_TAG="0.1.2"; irm "https://raw.githubusercontent.com/gemini-cli-extensions/data-agent-kit-starter-pack/$env:CODEX_TAG/codex-install.ps1" | iex
8787
```
8888

8989
2. **Install the plugin in Codex:**

0 commit comments

Comments
 (0)