Merge pull request #4944 from roc-lang/nightly_folder_adjustments

new nightly folder structure
This commit is contained in:
Anton-4 2023-01-23 17:05:57 +01:00 committed by GitHub
commit a30a4e36ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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