datasonnet / datasonnet-intellij-plugin

1 stars 2 forks source link

Custom libraries not loading on Windows #19

Open jhoeflaken opened 2 months ago

jhoeflaken commented 2 months ago

Hi,

Loading of custom libraries which are pn the classpath is not working on Windows. This is due to two things:

  1. Classpath is split on ":" (colon) while on Windows the path separator is a ";" (semi-colon).
  2. URL cannot have "\" but the Windows path have.

I have a fix for which I created pull request #20

Kind regards,

Jacob