From 7c6c8a67b0488714cb321ff24eaa480ce4401194 Mon Sep 17 00:00:00 2001 From: Ellen Marie Dash Date: Tue, 25 Nov 2025 20:22:01 -0500 Subject: [PATCH] Avoid Bundler deprecation warning by using 'bundle config set path' From Bundler's output: > Using the config command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. --- crates/rb-core/src/bundler/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/rb-core/src/bundler/mod.rs b/crates/rb-core/src/bundler/mod.rs index 394f467..1cf7539 100644 --- a/crates/rb-core/src/bundler/mod.rs +++ b/crates/rb-core/src/bundler/mod.rs @@ -244,7 +244,7 @@ impl BundlerRuntime { ); let status = Command::new("bundle") - .args(["config", "path", "--local"]) + .args(["config", "set", "path", "--local"]) .arg(self.vendor_dir().to_string_lossy().as_ref()) .current_dir(&self.root) .status_with_context(butler_runtime);