Ensure allowed_synced_folder_types is a list of symbols
This commit is contained in:
parent
853042f2fa
commit
a317a4d50d
|
@ -373,6 +373,10 @@ module VagrantPlugins
|
||||||
@usable_port_range = (2200..2250)
|
@usable_port_range = (2200..2250)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if @allowed_synced_folder_types
|
||||||
|
@allowed_synced_folder_types = Array(@allowed_synced_folder_types).map(&:to_sym)
|
||||||
|
end
|
||||||
|
|
||||||
# Make sure that the download checksum is a string and that
|
# Make sure that the download checksum is a string and that
|
||||||
# the type is a symbol
|
# the type is a symbol
|
||||||
@box_download_checksum = "" if !@box_download_checksum
|
@box_download_checksum = "" if !@box_download_checksum
|
||||||
|
|
Loading…
Reference in New Issue