Merge pull request #6749 from mwrock/hist

use SafeExec to capture history via up/down keys in powershell command
This commit is contained in:
Seth Vargo 2016-02-03 10:05:57 -05:00
commit 2ce3c84305
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
require "pathname"
require "tmpdir"
require "vagrant/util/subprocess"
require "vagrant/util/safe_exec"
module VagrantPlugins
module HostWindows
@ -34,7 +34,7 @@ module VagrantPlugins
end
# Launch it
Vagrant::Util::Subprocess.execute("powershell", *args)
Vagrant::Util::SafeExec.exec("powershell", *args)
end
end
end