new nightly folder structure

This commit is contained in:
Anton-4 2023-01-23 15:12:47 +01:00
parent 25f1d8d54f
commit be25da70b3
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
4 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ which includes the Roc compiler and various helpful utilities.
1. Untar the archive:
```sh
tar -xf roc_nightly-linux_x86_64-<VERSION>.tar.gz --one-top-level
tar -xf roc_nightly-linux_x86_64-<VERSION>.tar.gz
cd roc_night<TAB TO AUTOCOMPLETE>
```

View file

@ -19,7 +19,7 @@ which includes the Roc compiler and various helpful utilities.
```sh
mkdir roc_nightly-macos_apple_silicon-<VERSION>
tar xf roc_nightly-macos_apple_silicon-<VERSION>.tar.gz --directory roc_nightly-macos_apple_silicon-<VERSION>
tar xf roc_nightly-macos_apple_silicon-<VERSION>.tar.gz
cd roc_night<TAB TO AUTOCOMPLETE>
```

View file

@ -21,7 +21,7 @@ which includes the Roc compiler and various helpful utilities.
```sh
mkdir roc_nightly-macos_x86_64-<VERSION>
tar xf roc_nightly-macos_x86_64-<VERSION>.tar.gz --directory roc_nightly-macos_x86_64-<VERSION>
tar xf roc_nightly-macos_x86_64-<VERSION>.tar.gz
cd roc_night<TAB TO AUTOCOMPLETE>
```

View file

@ -76,11 +76,11 @@ export ROC_RELEASE_URL=$(./ci/get_latest_release_url.sh linux_x86_64)
# get roc release archive
curl -OL $ROC_RELEASE_URL
# extract archive
ls | grep "roc_nightly" | xargs tar --one-top-level=roc_nightly -xzvf
ls | grep "roc_nightly" | xargs tar -xzvf
# delete archive
ls | grep "roc_nightly.*tar.gz" | xargs rm
# TODO enable once new nightlies are uploaded
# mv roc_nightly* roc_nightly
# simplify dir name
mv roc_nightly* roc_nightly
echo 'Building tutorial.html from tutorial.md...'
mkdir www/build/tutorial