mirror of
https://github.com/YunoHost-Apps/wikijs_ynh.git
synced 2024-09-03 20:36:09 +02:00
trying to fix nodejs install on aarch64
This commit is contained in:
parent
0d1eaeecc4
commit
43155b7c0b
1 changed files with 6 additions and 1 deletions
|
@ -101,7 +101,12 @@ ynh_print_info "Installing dependencies..."
|
|||
### - As well as the section "REINSTALL DEPENDENCIES" in the restore script
|
||||
### - And the section "UPGRADE DEPENDENCIES" in the upgrade script
|
||||
|
||||
ynh_install_nodejs 10
|
||||
|
||||
if [ -n "$(uname -m | grep aarch64)" ]; then
|
||||
ynh_install_nodejs 10 --arch arm64
|
||||
else
|
||||
ynh_install_nodejs 10
|
||||
fi
|
||||
|
||||
ynh_install_app_dependencies postgresql postgresql-contrib
|
||||
|
||||
|
|
Loading…
Reference in a new issue