Skip to content

Commit 902f2de

Browse files
committed
chore: remove redirect flag from installation
1 parent 7f4e0d3 commit 902f2de

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This package now integrates `agent-browser` directly into `steel browser`, so yo
1616
## Install
1717

1818
```bash
19-
curl -LsSf https://setup.steel.dev | sh
19+
curl -sSf https://setup.steel.dev | sh
2020
```
2121

2222
Or download directly from [GitHub Releases](https://github.com/steel-dev/cli/releases).

bin/steel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if (existsSync(BINARY_PATH)) {
3737
);
3838
console.error("");
3939
console.error("Install the native binary:");
40-
console.error(" curl -LsSf https://setup.steel.dev | sh");
40+
console.error(" curl -sSf https://setup.steel.dev | sh");
4141
console.error("");
4242
console.error("Then add to your PATH:");
4343
console.error(' export PATH="$HOME/.steel/bin:$PATH"');

scripts/postinstall.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function main() {
1818
if (process.env.CI && !process.env.STEEL_FORCE_INSTALL) {
1919
console.log("[steel] Skipping native binary install in CI.");
2020
console.log(
21-
"[steel] Set STEEL_FORCE_INSTALL=1 to override, or use: curl -LsSf https://setup.steel.dev | sh"
21+
"[steel] Set STEEL_FORCE_INSTALL=1 to override, or use: curl -sSf https://setup.steel.dev | sh"
2222
);
2323
return;
2424
}
@@ -41,7 +41,7 @@ function main() {
4141
} catch {
4242
console.error("[steel] Error: curl is required but not found.");
4343
console.error(
44-
"[steel] Install curl, then run: curl -LsSf https://setup.steel.dev | sh"
44+
"[steel] Install curl, then run: curl -sSf https://setup.steel.dev | sh"
4545
);
4646
// Don't fail npm install — just warn
4747
return;
@@ -63,7 +63,7 @@ function main() {
6363
console.error("");
6464
console.error("[steel] Automatic installation failed.");
6565
console.error("[steel] Install manually:");
66-
console.error(" curl -LsSf https://setup.steel.dev | sh");
66+
console.error(" curl -sSf https://setup.steel.dev | sh");
6767
console.error("");
6868
console.error(
6969
"[steel] Or download from: https://github.com/steel-dev/cli/releases"

skills/steel-browser/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ steel browser live --session <name>
213213
| Session not reused between commands | Use exact same `--session <name>` on every command |
214214
| CAPTCHA blocking | `steel browser captcha status --wait`; restart with `--stealth` |
215215
| Stale session / stuck state | `steel browser stop --all` then fresh named session |
216-
| `steel: command not found` | `curl -LsSf https://setup.steel.dev \| sh` and add `$HOME/.steel/bin` to PATH |
216+
| `steel: command not found` | `curl -sSf https://setup.steel.dev \| sh` and add `$HOME/.steel/bin` to PATH |
217217
218218
Full playbook: [references/troubleshooting.md](references/troubleshooting.md).
219219

0 commit comments

Comments
 (0)