Rename Hyper-V Sync helper source file
This commit is contained in:
parent
9c09b1c736
commit
ab18f2ea85
|
@ -2,7 +2,7 @@ require 'optparse'
|
|||
|
||||
require "vagrant/action/builtin/mixin_synced_folders"
|
||||
|
||||
require_relative "../helper"
|
||||
require_relative "../sync_helper"
|
||||
|
||||
module VagrantPlugins
|
||||
module HyperV
|
||||
|
|
|
@ -8,7 +8,7 @@ require "vagrant/util/platform"
|
|||
|
||||
require "listen"
|
||||
|
||||
require_relative '../helper'
|
||||
require_relative '../sync_helper'
|
||||
|
||||
module VagrantPlugins
|
||||
module HyperV
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
require "fileutils"
|
||||
require "vagrant/util/platform"
|
||||
|
||||
require_relative 'helper'
|
||||
require_relative 'sync_helper'
|
||||
|
||||
module VagrantPlugins
|
||||
module HyperV
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require_relative "../../../../base"
|
||||
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/command/sync_auto")
|
||||
|
||||
describe VagrantPlugins::HyperV::Command::SyncAuto do
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
require_relative "../../../../base"
|
||||
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/command/sync")
|
||||
|
||||
describe VagrantPlugins::HyperV::Command::Sync do
|
||||
|
|
|
@ -3,7 +3,7 @@ require 'zip'
|
|||
|
||||
require_relative "../../../base"
|
||||
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
|
||||
|
||||
describe VagrantPlugins::HyperV::SyncHelper do
|
||||
subject { described_class }
|
|
@ -3,7 +3,7 @@ require "vagrant"
|
|||
require Vagrant.source_root.join("test/unit/base")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/config")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/errors")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/sync_helper")
|
||||
require Vagrant.source_root.join("plugins/providers/hyperv/synced_folder")
|
||||
|
||||
describe VagrantPlugins::HyperV::SyncedFolder do
|
||||
|
|
Loading…
Reference in New Issue