From c55597111fd70feeeb5d2921b732551215134bf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Fri, 28 Jun 2024 10:43:27 +0200 Subject: [PATCH] More straightforward bindle install --- scripts/_common.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index e69bf70..f1a2444 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -30,9 +30,7 @@ fabmanager_build_ruby() { ynh_use_ruby ynh_exec_warn_less ynh_exec_as "$app" $ynh_gem install bundler ynh_exec_warn_less ynh_exec_as "$app" bin/bundle config --global frozen 1 - ynh_exec_warn_less ynh_exec_as "$app" bin/bundle config set --local without 'development test doc' - ynh_exec_warn_less ynh_exec_as "$app" bin/bundle install - ynh_exec_warn_less ynh_exec_as "$app" bin/bundle binstubs --all + ynh_exec_warn_less ynh_exec_as "$app" bin/bundle install --binstubs --without 'development test doc' popd }