Fix nil case
This commit is contained in:
parent
3b63e1f8b8
commit
b8bad54ad9
|
@ -50,7 +50,7 @@ module VagrantPlugins
|
||||||
command: gid_command,
|
command: gid_command,
|
||||||
output: output[:stderr]
|
output: output[:stderr]
|
||||||
) { |type, data| output[type] << data if output[type] }
|
) { |type, data| output[type] << data if output[type] }
|
||||||
mount_gid = output[:stdout].split(':').at(2).chomp
|
mount_gid = output[:stdout].split(':').at(2).to_s.chomp
|
||||||
self.class_variable_get(:@@logger).debug("Owner group ID (lookup): #{options[:group]} -> #{mount_gid}")
|
self.class_variable_get(:@@logger).debug("Owner group ID (lookup): #{options[:group]} -> #{mount_gid}")
|
||||||
rescue Vagrant::Errors::VirtualBoxMountFailed
|
rescue Vagrant::Errors::VirtualBoxMountFailed
|
||||||
if options[:owner] == options[:group]
|
if options[:owner] == options[:group]
|
||||||
|
|
Loading…
Reference in New Issue