mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
new nightly folder structure
This commit is contained in:
parent
25f1d8d54f
commit
be25da70b3
4 changed files with 6 additions and 6 deletions
|
@ -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>
|
||||
```
|
||||
|
||||
|
|
|
@ -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>
|
||||
```
|
||||
|
||||
|
|
|
@ -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>
|
||||
```
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue