From 98fa6d771dee53e616f27eed1502c46105aac8eb Mon Sep 17 00:00:00 2001 From: Gerhard Schlager Date: Mon, 13 Mar 2023 10:55:44 +0100 Subject: [PATCH] DEV: Remove deprecation warnings from bundler (#690) --- templates/web.template.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/web.template.yml b/templates/web.template.yml index e574210..9718103 100644 --- a/templates/web.template.yml +++ b/templates/web.template.yml @@ -162,7 +162,9 @@ run: cd: $home hook: bundle_exec cmd: - - su discourse -c 'bundle install --deployment --retry 3 --jobs 4 --verbose --without test development' + - su discourse -c 'bundle config --local deployment true' + - su discourse -c 'bundle config --local without "development test"' + - su discourse -c 'bundle install --retry 3 --jobs 4' - exec: cd: $home -- 2.25.1