1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/onlyoffice_ynh.git synced 2024-09-03 19:56:11 +02:00

Fix architecture test

Fix architecture test to disallow installation on arm64 arch
This commit is contained in:
Quiwy 2021-12-12 18:27:30 +01:00 committed by GitHub
parent 74da7d9ae5
commit 30b60b9867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,7 +35,7 @@ ynh_script_progression --message="Validating installation parameters..."
final_path=/var/www/$app final_path=/var/www/$app
test ! -e "$final_path" || ynh_die --message="This path already contains a folder" test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
if dpkg-architecture --is armhf if dpkg-architecture --is armhf || dpkg-architecture --is arm64
then then
ynh_die --message="Sorry, this app can not be installed on an ARM architecture" ynh_die --message="Sorry, this app can not be installed on an ARM architecture"
fi fi