From 3135783df6203037932b569d3e93e76dd383f991 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 24 Feb 2019 17:41:40 +0100 Subject: [PATCH] Fix restore script for erlang and elixir --- scripts/restore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/restore b/scripts/restore index ca391e1..143a36d 100755 --- a/scripts/restore +++ b/scripts/restore @@ -95,12 +95,12 @@ chown -R "$app":"$app" "$final_path" ynh_print_info "Installing erlang and elixir ..." if [ "$(lsb_release --codename --short)" == "jessie" ]; then - sudo apt install -y ../sources/esl-erlang_21.2.6-1~debian~jessie_amd64.deb - sudo apt install -y ../sources/elixir_1.8.1-2~debian~jessie_amd64.deb + sudo apt install -y ../settings/sources/esl-erlang_21.2.6-1~debian~jessie_amd64.deb + sudo apt install -y ../settings/sources/elixir_1.8.1-2~debian~jessie_amd64.deb elif [ "$(lsb_release --codename --short)" == "stretch" ]; then - sudo apt install -y ../sources/esl-erlang_21.2.6-1~debian~stretch_amd64.deb - sudo apt install -y ../sources/elixir_1.8.1-2~debian~stretch_amd64.deb + sudo apt install -y ../settings/sources/esl-erlang_21.2.6-1~debian~stretch_amd64.deb + sudo apt install -y ../settings/sources/elixir_1.8.1-2~debian~stretch_amd64.deb fi #=================================================