Merge pull request #134 from codestothestars/private-key-path

Show correct error when private_key_path undefined
This commit is contained in:
David Justice 2016-11-14 16:09:18 -08:00 коммит произвёл GitHub
Родитель e2bd5f12c5 ee28e44a0a
Коммит 9e0cdb1c52
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -81,7 +81,7 @@ module VagrantPlugins
if get_image_os(image_details) != 'Windows'
private_key_paths = machine.config.ssh.private_key_path
if private_key_paths.empty?
if private_key_paths.nil? || private_key_paths.empty?
raise I18n.t('vagrant_azure.private_key_not_specified')
end