Skip to content

Commit

Permalink
add doc to download latest rust+ bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Sep 7, 2020
1 parent 35bbfa1 commit 98c3a23
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/DownloadBundle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Download Rust+ Bundle

You can use the following bash snippet to fetch the latest Rust+ bundle URL.

```bash
curl -s -H 'Exponent-SDK-Version: 38.0.0' -H 'Exponent-Platform: android' -H 'Exponent-Version: 0.0.15' -H 'Accept: application/expo+json,application/json' -H 'Expo-Release-Channel: default' -H 'Expo-Api-Version: 1' -H 'Expo-Client-Environment: STANDALONE' -H 'Exponent-Accept-Signature: true' -H 'Expo-JSON-Error: true' -H 'Host: exp.host' -H 'User-Agent: okhttp/3.12.1' --compressed 'https://exp.host/@facepunch/RustCompanion' | python -c 'import sys, json; print(json.loads(json.load(sys.stdin)["manifestString"])["bundleUrl"])'
```

0 comments on commit 98c3a23

Please sign in to comment.