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:
commit
6f702f7f23
2 changed files with 6 additions and 1 deletions
|
@ -40,7 +40,6 @@ Depending of the configuration, the app be used by multiple users
|
|||
#### Supported architectures
|
||||
|
||||
* x86-64b - [](https://ci-apps.yunohost.org/ci/apps/writefreely/)
|
||||
* ~~ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/writefreely/)~~
|
||||
* Jessie x86-64b - [](https://ci-stretch.nohost.me/ci/apps/writefreely/)
|
||||
|
||||
## Limitations
|
||||
|
|
|
@ -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
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue