From aef159b0979ef1369b439bbe7c66b6790a8c4c35 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com> Date: Tue, 18 Jan 2022 20:39:16 +0000 Subject: [PATCH] readme: building from stable branch --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 63f5603c1c..f09e01ee84 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,8 @@ move %APPDATA%/local/bin/simplex-chat.exe ### Build from source +> **Please note:** to build the app use source code from [stable branch](https://github.com/simplex-chat/simplex-chat/tree/stable). + #### Using Docker On Linux, you can build the chat executable using [docker build with custom output](https://docs.docker.com/engine/reference/commandline/build/#custom-build-outputs): @@ -132,6 +134,7 @@ On Linux, you can build the chat executable using [docker build with custom outp ```shell $ git clone git@github.com:simplex-chat/simplex-chat.git $ cd simplex-chat +$ git checkout stable $ DOCKER_BUILDKIT=1 docker build --output ~/.local/bin . ``` @@ -150,6 +153,7 @@ and build the project: ```shell $ git clone git@github.com:simplex-chat/simplex-chat.git $ cd simplex-chat +$ git checkout stable $ stack install ```