mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
Merge pull request #4944 from roc-lang/nightly_folder_adjustments
new nightly folder structure
This commit is contained in:
commit
a30a4e36ed
@ -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…
Reference in New Issue
Block a user