Vorlonjs
Vorlonjs copied to clipboard
Use path.resolve instead of path.join for loading ssl options
This is a breaking change if your key/crt started with a '/'
path.join('/foo/bar', '../', 'baz') '/foo/baz' path.join('/foo/bar', '../', '/baz') '/foo/baz' path.resolve('/foo/bar', '../', 'baz') '/foo/baz' path.resolve('/foo/bar', '../', '/baz') '/baz'
@meulta Any issues with this?