1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00

[enh] close #7: enable ARM build which works.

- enable ARM build which works
- update upstream to 0.20.0
This commit is contained in:
Moul 2016-07-03 11:47:35 +02:00
parent 48df5a49b0
commit 2f0a7722c8
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
- [Duniter project](https://duniter.org)
- [YunoHost project](https://yunohost.org)
- Works on Debian Jessie 64 bits (will come soon on ARM)
- Works on Debian Jessie 64 bits and ARM
- 200Mo free RAM is necessary
## Install
@ -15,7 +15,7 @@ sudo yunohost app install https://github.com/duniter/duniter_ynh
The package is **in progress**.
Currently, it:
- Install Duniter ≥0.20.0a87
- Install Duniter ≥ 0.20.0
- Configure
- Synchronize
- Start

View file

@ -1 +1 @@
v0.20.0a87
v0.20.0

View file

@ -44,7 +44,7 @@ arch=$(uname -m)
if [ $arch == "x86_64" ]; then
arch="x64"
fi
if [ $arch != "x64" ]; then #&& $arch != "armv7l" ]; then
if [[ $arch != "x64" && $arch != "armv7l" ]]; then
ynh_die "$arch is not currently supported." 2
fi

View file

@ -17,7 +17,7 @@ admin=$(ynh_app_setting_get "$app" admin)
version=$(cat ../conf/upstream_version)
# Check CPU arch
if [ $arch != "x64" ]; then #&& $arch != "armv7l" ], then
if [[ $arch != "x64" && $arch != "armv7l" ]], then
ynh_die "$arch is not currently supported." 2
fi