aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar saurabh <saurabhyadav4321@gmail.com> 2023-09-21 08:41:13 +0530
committerGravatar GitHub <noreply@github.com> 2023-09-20 20:11:13 -0700
commit539eec85db8f97a0c2fa0ac013a93727649b3da4 (patch)
tree470bf3b52d5c7f99969cee2d688286ac0cb9f80c
parentb7951511a3926b1ffe008c12ec712096cf53997f (diff)
downloadbun-539eec85db8f97a0c2fa0ac013a93727649b3da4.tar.gz
bun-539eec85db8f97a0c2fa0ac013a93727649b3da4.tar.zst
bun-539eec85db8f97a0c2fa0ac013a93727649b3da4.zip
docs(project): development fix Arch install-dependencies command (#5270)
sudo is required to run pacman if not root user
-rw-r--r--docs/project/development.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/project/development.md b/docs/project/development.md
index 5e8abd8e6..06f2289e0 100644
--- a/docs/project/development.md
+++ b/docs/project/development.md
@@ -96,7 +96,7 @@ $ sudo apt install cargo ccache cmake git golang libtool ninja-build pkg-config
```
```bash#Arch
-$ pacman -S base-devel ccache cmake esbuild git go libiconv libtool make ninja pkg-config python rust sed unzip
+$ sudo pacman -S base-devel ccache cmake esbuild git go libiconv libtool make ninja pkg-config python rust sed unzip
```
{% /codetabs %}