Update CHANGELOG
This commit is contained in:
parent
7344b6e39b
commit
e5d1d681d9
|
@ -25,6 +25,7 @@ BUG FIXES:
|
|||
longer be shown in plaintext in the output. [GH-3203]
|
||||
- guests/linux: SMB mount works with passwords with symbols. [GH-3202]
|
||||
- providers/hyperv: Check for PowerShell features. [GH-3398]
|
||||
- provisioners/shell: Empty shell scripts don't cause errors. [GH-3423]
|
||||
- synced\_folders/smb: Only set the chmod properly by default on Windows
|
||||
if it isn't already set. [GH-3394]
|
||||
- synced\_folders/smb: Sharing folders with odd characters like parens
|
||||
|
|
|
@ -53,7 +53,7 @@ module VagrantPlugins
|
|||
:path => expanded_path)
|
||||
else
|
||||
data = expanded_path.read(16)
|
||||
if data != nil && !data.valid_encoding?
|
||||
if data && !data.valid_encoding?
|
||||
errors << I18n.t(
|
||||
"vagrant.provisioners.shell.invalid_encoding",
|
||||
actual: data.encoding.to_s,
|
||||
|
|
Loading…
Reference in New Issue