@railway/cli 4.57.0 → 4.57.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,18 @@ The Railway CLI lets you interact with your Railway projects from the command li
4
4
 
5
5
  ## Installation
6
6
 
7
- Install the CLI with the Bash script on macOS, Linux, or Windows through WSL:
7
+ Install the Railway CLI with agent support configured in one step (macOS, Linux, Windows via [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)):
8
8
 
9
9
  ```bash
10
- bash <(curl -fsSL cli.new)
10
+ bash <(curl -fsSL railway.com/install.sh) --agents -y
11
11
  ```
12
12
 
13
- Install the CLI and configure Railway agent support:
13
+ This installs the CLI to `~/.railway/bin` and runs [`railway setup agent`](https://docs.railway.com/cli/setup) to configure detected agent tools.
14
+
15
+ To install the CLI without agent configuration:
14
16
 
15
17
  ```bash
16
- bash <(curl -fsSL cli.new) --agents -y
18
+ bash <(curl -fsSL railway.com/install.sh) -y
17
19
  ```
18
20
 
19
21
  Uninstall the CLI:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@railway/cli",
3
- "version": "4.57.0",
3
+ "version": "4.57.2",
4
4
  "description": "Develop and deploy code with zero configuration",
5
5
  "type": "module",
6
6
  "author": "Jake Runzer",