Skip to content

Commit b35daf9

Browse files
committed
Update download instructions for AVBlocks Core and Assets to use version v3.1.0-demo.1
1 parent badbfdb commit b35daf9

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

docs/download-avblocks-core-and-assets-mac.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,30 @@ In the script below, change the tag to the release that you need. For the availa
1212

1313
```bash
1414
# select version and platform
15-
tag="v3.0.0-demo.1"
15+
tag="v3.1.0-demo.1"
1616
platform="darwin"
1717

1818
# download
1919
mkdir -p ./sdk
20+
cd sdk
21+
22+
# sdk
2023
curl \
2124
--location \
22-
--output ./sdk/avblocks_$tag-$platform.zip \
23-
https://github.com/avblocks/avblocks-core/releases/download/$tag/avblocks_$tag-$platform.zip
25+
--output ./avblocks-$tag-$platform.zip \
26+
https://github.com/avblocks/avblocks-core/releases/download/$tag/avblocks-$tag-$platform.zip
2427

28+
# sha256 checksum
29+
curl \
30+
--location \
31+
--output ./avblocks-$tag-$platform.zip.sha256 \
32+
https://github.com/avblocks/avblocks-core/releases/download/$tag/avblocks-$tag-$platform.zip.sha256
33+
34+
# verify sha256 checksum
35+
shasum --check ./avblocks-$tag-$platform.zip.sha256
36+
2537
# unzip
26-
pushd sdk
27-
unzip avblocks_$tag-$platform.zip
28-
popd
38+
unzip avblocks-$tag-$platform.zip
2939
```
3040

3141
## Assets
@@ -34,15 +44,13 @@ These demo audio and video assets are used as input for the AVBlocks samples.
3444

3545
```bash
3646
mkdir -p ./assets
47+
cd assets
48+
3749
curl \
3850
--location \
39-
--output ./assets/avblocks_assets_v1.zip \
51+
--output ./avblocks_assets_v1.zip \
4052
https://github.com/avblocks/avblocks-assets/releases/download/v1/avblocks_assets_v1.zip
4153

4254
# unzip
43-
pushd assets
4455
unzip avblocks_assets_v1.zip
45-
popd
4656
```
47-
48-
###

0 commit comments

Comments
 (0)