Fix untar commands

The MacOS `tar` command doesn't have the --one-top-level flag, so we
need to ensure that the target directory exists before extracting.
This commit is contained in:
David Dunn 2022-09-13 16:27:03 +02:00
parent d0687c748d
commit 47efb43ded
No known key found for this signature in database
GPG key ID: 99F10972153A72B0

View file

@ -16,7 +16,8 @@ which includes the Roc compiler and various helpful utilities.
1. Untar the archive:
```sh
roc_nightly-darwin_apple_silicon-<VERSION>.tar.gz
mkdir roc_nightly-darwin_apple_silicon-<VERSION>
tar xf roc_nightly-darwin_apple_silicon-<VERSION>
```
## How to install Roc platform dependencies