From 3bfc2be68140d81fdb85f8769aac6092d40632b1 Mon Sep 17 00:00:00 2001 From: dement6d <93228501+dement6d@users.noreply.github.com> Date: Tue, 17 May 2022 12:11:26 +0200 Subject: [PATCH] Update BUILDING.md add note about required package for build-release script --- BUILDING.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/BUILDING.md b/BUILDING.md index a3f13486f..6a8359d57 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -124,6 +124,15 @@ yarn start-prod # start the app on production mode (currently this is the only o ### Commands +The `rpm` package is required for running the build-release script. Run the appropriate command to install the `rpm` package: +```sh +sudo pacman -S rpm # Arch +``` +```sh +sudo apt install rpm # Ubuntu/Debian +``` + + Run the following to build the binaries for your specific system OS. ```