Merge pull request #3423 from bmorg/fix_empty_shell_provisioner_error
provisioner/shell: error with empty shell provisioners
This commit is contained in:
commit
7344b6e39b
|
@ -53,7 +53,7 @@ module VagrantPlugins
|
||||||
:path => expanded_path)
|
:path => expanded_path)
|
||||||
else
|
else
|
||||||
data = expanded_path.read(16)
|
data = expanded_path.read(16)
|
||||||
if !data.valid_encoding?
|
if data != nil && !data.valid_encoding?
|
||||||
errors << I18n.t(
|
errors << I18n.t(
|
||||||
"vagrant.provisioners.shell.invalid_encoding",
|
"vagrant.provisioners.shell.invalid_encoding",
|
||||||
actual: data.encoding.to_s,
|
actual: data.encoding.to_s,
|
||||||
|
|
Loading…
Reference in New Issue