provisioners/puppet: fix exception with module paths [GH-5123]
This commit is contained in:
parent
2ece08c019
commit
95e1c19f22
|
@ -25,7 +25,7 @@ module VagrantPlugins
|
|||
# Setup the module paths
|
||||
@module_paths = []
|
||||
@expanded_module_paths.each_with_index do |path, _|
|
||||
key = Digest::MD5.hexdigest(path)
|
||||
key = Digest::MD5.hexdigest(path.to_s)
|
||||
@module_paths << [path, File.join(config.temp_dir, "modules-#{key}")]
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue