update readme to explain version argument

This commit is contained in:
Greizgh
2021-04-17 18:09:54 +02:00
parent 0a9bf0bf57
commit 22c1c3ce24
+3 -1
View File
@@ -17,10 +17,12 @@ Then:
``` ```
git clone https://github.com/greizgh/bitwarden_rs-debian.git git clone https://github.com/greizgh/bitwarden_rs-debian.git
cd bitwarden_rs-debian cd bitwarden_rs-debian
./build.sh -r 1.17.0 ./build.sh -r <version> # target bitwarden_rs version, example 1.19.0
``` ```
The `build.sh` script will build bitwarden_rs for the same Debian version which targets bitwarden_rs. The `build.sh` script will build bitwarden_rs for the same Debian version which targets bitwarden_rs.
That means, to build bitwarden_rs v1.19.0, make sure to checkout tag `v1.19.0` of this project.
To compile for a different Debian version, specify the release name (e.g. Stretch, Buster) using the `-o` option. You can compile for arm32v7 or amd64 architecture using the `-a` option, only the Buster (default) release of debian is supported by arm32v7. To compile for a different Debian version, specify the release name (e.g. Stretch, Buster) using the `-o` option. You can compile for arm32v7 or amd64 architecture using the `-a` option, only the Buster (default) release of debian is supported by arm32v7.
``` ```