For bsd the resolve_host_path capability is a no-op. For darwin hosts, if firmlinks are defined on the system, paths will be properly resolved to real path.
12 lines
172 B
Ruby
12 lines
172 B
Ruby
module VagrantPlugins
|
|
module HostBSD
|
|
module Cap
|
|
class Path
|
|
def self.resolve_host_path(env, path)
|
|
path
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|