vagrant-serial 0.0.16 → 0.0.17
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/vagrant-serial/config.rb +1 -1
- data/lib/vagrant-serial/version.rb +1 -1
- metadata +1 -1
@@ -6,7 +6,7 @@ module Vagrant
|
|
6
6
|
attr_accessor :sockets_path
|
7
7
|
|
8
8
|
def sockets_path
|
9
|
-
@sockets_path.nil? ? (@sockets_path = "#{Vagrant::Environment::DEFAULT_HOME}/serial") : @sockets_path
|
9
|
+
@sockets_path.nil? ? (@sockets_path = "#{File.expand_path(Vagrant::Environment::DEFAULT_HOME)}/serial") : @sockets_path
|
10
10
|
end
|
11
11
|
|
12
12
|
def set?
|