aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jake Lynch <jake@foodisgood.com> 2022-08-21 22:20:33 -0400
committerGravatar GitHub <noreply@github.com> 2022-08-21 19:20:33 -0700
commit65dd2214d9b8f35e554f0d00847d0d422fe3a5e0 (patch)
treef14cb49d5ff0e2739edeb9745d9401bbed6f5a9d
parent3d8bc140aad4d7b035836037e94d688a11f0d7fb (diff)
downloadbun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.tar.gz
bun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.tar.zst
bun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.zip
fix bun-tools location in macOSx zig instructions (#1124)
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d0333c464..16ee8911c 100644
--- a/README.md
+++ b/README.md
@@ -3400,7 +3400,7 @@ To install the zig binary:
```bash
# Custom path for the custom zig install
-mkdir -p ~/.bun-tools
+mkdir -p $HOME/.bun-tools
# Requires jq & grab latest binary
curl -o zig.tar.gz -sL https://github.com/oven-sh/zig/releases/download/jul1/zig-macos-$(uname -m).tar.gz
@@ -3409,7 +3409,7 @@ curl -o zig.tar.gz -sL https://github.com/oven-sh/zig/releases/download/jul1/zig
tar -xvf zig.tar.gz -C $HOME/.bun-tools/
# Make sure it gets trusted
-xattr -dr com.apple.quarantine .bun-tools/zig/zig
+xattr -dr com.apple.quarantine $HOME/.bun-tools/zig/zig
```
Now you'll need to add Zig to your PATH.