Vorlonjs icon indicating copy to clipboard operation
Vorlonjs copied to clipboard

Use path.resolve instead of path.join for loading ssl options

Open mlucool opened this issue 7 years ago • 1 comments

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'

mlucool avatar Jun 21 '18 20:06 mlucool

@meulta Any issues with this?

mlucool avatar Jul 05 '18 20:07 mlucool