guests/arch: Use require_relative in plugin defn

This commit is contained in:
Seth Vargo 2016-05-30 22:21:45 -04:00
parent cb0e77692c
commit 3a9ac19f7e
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ module VagrantPlugins
description "Arch guest support."
guest("arch", "linux") do
require File.expand_path("../guest", __FILE__)
require_relative "guest"
Guest
end