Only get the home path on the root environment
This commit is contained in:
parent
442584fbac
commit
aaa09749e4
|
@ -97,6 +97,7 @@ module Vagrant
|
||||||
#
|
#
|
||||||
# @return [Pathname]
|
# @return [Pathname]
|
||||||
def home_path
|
def home_path
|
||||||
|
return parent.home_path if parent
|
||||||
return @_home_path if defined?(@_home_path)
|
return @_home_path if defined?(@_home_path)
|
||||||
|
|
||||||
@_home_path ||= Pathname.new(File.expand_path(ENV["VAGRANT_HOME"] || DEFAULT_HOME))
|
@_home_path ||= Pathname.new(File.expand_path(ENV["VAGRANT_HOME"] || DEFAULT_HOME))
|
||||||
|
|
Loading…
Reference in New Issue