aboutsummaryrefslogtreecommitdiff
path: root/scripts/restore
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/restore')
-rw-r--r--scripts/restore9
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/restore b/scripts/restore
index 19a7715..64ac8f8 100644
--- a/scripts/restore
+++ b/scripts/restore
@@ -101,19 +101,20 @@ ynh_add_swap --size=$swap_needed
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
+ynh_install_app_dependencies $pkg_dependencies
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
-ynh_install_app_dependencies $pkg_dependencies
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
+ynh_install_ruby --ruby_version=$RUBY_VERSION
#=================================================
# INSTALLING RUBY AND BUNDLER
#=================================================
ynh_script_progression --message="Installing Ruby..."
-ynh_install_ruby --ruby_version=$RUBY_VERSION
pushd "$final_path/live"
- gem update --system
- gem install bundler --no-document
+ ynh_use_ruby
+ # ynh_gem update --system
+ ynh_gem install bundler --no-document
popd
#=================================================