From 00ae7eb234703e6a65df3c7c01576ee717e2409f Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Fri, 27 Nov 2020 16:47:09 -0500 Subject: doc: Fix up release process Missed a trailing '/' while generating the archive with disastrous results. --- RELEASING.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 1ffd746..1886e6b 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -26,10 +26,21 @@ git tag -s -m 'WebRTC AudioProcessing v' v ```sh 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 ``` +## 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 ```sh -- cgit v1.2.1