From 16bcc1d874786c5f4bf2229da7467e4a816a70fa Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 12 Jun 2018 16:20:30 -0700 Subject: [PATCH] Include scripts directory when building pathname --- plugins/hosts/windows/host.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hosts/windows/host.rb b/plugins/hosts/windows/host.rb index b92ac335e..5658f9b91 100644 --- a/plugins/hosts/windows/host.rb +++ b/plugins/hosts/windows/host.rb @@ -11,7 +11,7 @@ module VagrantPlugins # @return [Pathname] Path to scripts directory def self.scripts_path - Pathname.new(File.expand_path("..", __FILE__)) + Pathname.new(File.expand_path("../scripts", __FILE__)) end # @return [Pathname] Path to modules directory