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:
parent
48df5a49b0
commit
2f0a7722c8
4 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.20.0a87
|
||||
v0.20.0
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue