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

Fix MIX Dependencies installation

This commit is contained in:
Yalh 2019-01-28 02:14:41 +01:00
parent c24bae8195
commit 24aad57376

View file

@ -253,9 +253,9 @@ chown -R "$app":"$app" "$final_path"
# Install dependecies
su -l "$app" -s /bin/bash <<DEPENDENCIES
pushd $final_path/$app
MIX_ENV=prod mix local.hex --force
MIX_ENV=prod mix local.rebar --force
MIX_ENV=prod mix deps.get
mix local.hex --force
mix local.rebar --force
mix deps.get
popd
DEPENDENCIES