diff options
author | 2022-08-21 22:20:33 -0400 | |
---|---|---|
committer | 2022-08-21 19:20:33 -0700 | |
commit | 65dd2214d9b8f35e554f0d00847d0d422fe3a5e0 (patch) | |
tree | f14cb49d5ff0e2739edeb9745d9401bbed6f5a9d | |
parent | 3d8bc140aad4d7b035836037e94d688a11f0d7fb (diff) | |
download | bun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.tar.gz bun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.tar.zst bun-65dd2214d9b8f35e554f0d00847d0d422fe3a5e0.zip |
fix bun-tools location in macOSx zig instructions (#1124)
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |