frontend-maven-plugin
frontend-maven-plugin copied to clipboard
Fix symbolic link bug of `installDirectory`
if installDirectory
is placed in a path which contains symbolic link, an exception will throw because getCanonicalPath()
may resolve to another different path.
For example, set installDirectory
to ${java.io.tmpdir}/nodejs
in mac os x throws exception, because getCanonicalPath()
resolve /var/folders/**/nodejs
to /private/var/folders/**/nodejs
.
Summary
Tests and Documentation