1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/writefreely_ynh.git synced 2024-09-03 20:36:02 +02:00

Merge pull request #13 from YunoHost-Apps/testing

Manage WiteFreely not available on ARM
This commit is contained in:
yalh76 2019-01-27 10:37:32 +01:00 committed by GitHub
commit 6f702f7f23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -40,7 +40,6 @@ Depending of the configuration, the app be used by multiple users
#### Supported architectures
* x86-64b - [![Build Status](https://ci-apps.yunohost.org/ci/logs/writefreely%20%28Community%29.svg)](https://ci-apps.yunohost.org/ci/apps/writefreely/)
* ~~ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/writefreely%20%28Community%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/writefreely/)~~
* Jessie x86-64b - [![Build Status](https://ci-stretch.nohost.me/ci/logs/writefreely%20%28Community%29.svg)](https://ci-stretch.nohost.me/ci/apps/writefreely/)
## Limitations

View file

@ -20,6 +20,12 @@ ynh_clean_setup () {
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
arch=$(uname -m)
if [[ $arch == arm* ]]
then
ynh_die "WriteFreely not available on Arm"
fi
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================