aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dawid Sowa <dawidpawelsowa@gmail.com> 2023-10-18 23:00:04 +0200
committerGravatar GitHub <noreply@github.com> 2023-10-18 14:00:04 -0700
commit35259c0c1d54f03691d95e7646e7cf368d780652 (patch)
tree4d5fa0228d39275c98a4b5b72568d46769466c4a
parente7cba822e4ff19461bddc22c3edb7074aa4e0c45 (diff)
downloadbun-35259c0c1d54f03691d95e7646e7cf368d780652.tar.gz
bun-35259c0c1d54f03691d95e7646e7cf368d780652.tar.zst
bun-35259c0c1d54f03691d95e7646e7cf368d780652.zip
fix: change `--no-scripts` to `--ignore-scripts` (#6587)
-rw-r--r--docs/install/lifecycle.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/install/lifecycle.md b/docs/install/lifecycle.md
index 035ead24d..513f9f8da 100644
--- a/docs/install/lifecycle.md
+++ b/docs/install/lifecycle.md
@@ -37,8 +37,8 @@ Once added to `trustedDependencies`, install/re-install the package. Bun will re
## `--ignore-scripts`
-To disable lifecycle scripts for all packages, use the `--no-scripts` flag.
+To disable lifecycle scripts for all packages, use the `--ignore-scripts` flag.
```bash
-$ bun install --no-scripts
+$ bun install --ignore-scripts
```