Skip to content

Commit 7c6c8a6

Browse files
authored
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.
1 parent d3fa335 commit 7c6c8a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/rb-core/src/bundler

crates/rb-core/src/bundler/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl BundlerRuntime {
244244
);
245245

246246
let status = Command::new("bundle")
247-
.args(["config", "path", "--local"])
247+
.args(["config", "set", "path", "--local"])
248248
.arg(self.vendor_dir().to_string_lossy().as_ref())
249249
.current_dir(&self.root)
250250
.status_with_context(butler_runtime);

0 commit comments

Comments
 (0)