doc: Fix up release process

Missed a trailing '/' while generating the archive with disastrous
results.
This commit is contained in:
Arun Raghavan 2020-11-27 16:47:09 -05:00
parent d353e92425
commit 00ae7eb234

View File

@ -26,10 +26,21 @@ git tag -s -m 'WebRTC AudioProcessing v<X.y>' v<X.y>
```sh ```sh
git archive --format 'tar.gz' \ git archive --format 'tar.gz' \
--prefix webrtc-audio-processing-X.y -9 vX.y \ --prefix 'webrtc-audio-processing-X.y/' -9 vX.y \
> webrtc-audio-processing-X.y.tar.gz > webrtc-audio-processing-X.y.tar.gz
``` ```
## Do a test build
```sh
tar xvf webrtc-audio-processing-X.y.tar.gz
cd webrtc-audio-processing-X.y
meson . build -Dprefix=$PWD/install
ninja -C build
ninja -C build install
cd ..
```
## Checksum the tarball ## Checksum the tarball
```sh ```sh