From 9c9c92796b5a3da5b4005b9adc7eada0411c0d9b Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Wed, 1 Jul 2020 20:54:31 +0300 Subject: [PATCH] Fix a bug with Vagrant --- src/steps/vagrant.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/vagrant.rs b/src/steps/vagrant.rs index 5be22fb8..1415f9da 100644 --- a/src/steps/vagrant.rs +++ b/src/steps/vagrant.rs @@ -190,7 +190,7 @@ pub fn topgrade_vagrant_box(ctx: &ExecutionContext, vagrant_box: &VagrantBox) -> } let mut command = format!("env TOPGRADE_PREFIX={} topgrade", vagrant_box.smart_name()); if ctx.config().yes() { - command.push_str("-y"); + command.push_str(" -y"); } ctx.run_type()