aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/install4
-rw-r--r--scripts/restore8
2 files changed, 6 insertions, 6 deletions
diff --git a/scripts/install b/scripts/install
index 748fcb1..f2ae407 100644
--- a/scripts/install
+++ b/scripts/install
@@ -149,8 +149,8 @@ ynh_script_progression --message="Installing Ruby..."
pushd "$final_path/live"
ynh_use_ruby
- ynh_gem update --system
- ynh_gem install bundler --no-document
+ ynh_exec_warn_less ynh_gem update --system
+ ynh_exec_warn_less ynh_gem install bundler --no-document
popd
#=================================================
diff --git a/scripts/restore b/scripts/restore
index 68ff2b0..a80637c 100644
--- a/scripts/restore
+++ b/scripts/restore
@@ -101,8 +101,8 @@ ynh_restore_file --origin_path="/etc/cron.d/$app"
#=================================================
ynh_script_progression --message="Reinstalling dependencies..."
-ynh_install_app_dependencies $pkg_dependencies
-ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
+ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
+ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
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
@@ -113,8 +113,8 @@ ynh_script_progression --message="Installing Ruby..."
pushd "$final_path/live"
ynh_use_ruby
- ynh_gem update --system
- ynh_gem install bundler --no-document
+ ynh_exec_warn_less ynh_gem update --system
+ ynh_exec_warn_less ynh_gem install bundler --no-document
popd
#=================================================