-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix broken jar path #14
Comments
It sounds like a Windows-specific problem in the plugin. I'll take a look.
|
I've just run this on Windows (Win 10, Java 1.8.0_72, Clojure 1.8) and am getting the same behavior and result that nodisassemble is not usable on this platform for me. |
I just experimented with this change to lein-nodisassemble.plugin and it worked to get the plugin working on Windows. (defn middleware [project]
(let [version (get-version project)
project (update-in project [:dependencies] conj ['nodisassemble version])
path (-> (find-dep project) .getAbsolutePath)]
(update-in project [:jvm-opts] conj (str "-javaagent:\"" path "\"")))) The changes are in using .getAbsolutePath and also quoting the path when assembling the javaagent string. I have not tested on other platforms, however. |
The leiningen plugin writes
/C:/Users/<...>/nodisassemble-0.1.3.jar
into the:jvm-opts
as the path to the jar. This has a leading slash, which triggers the following error:If I setup the
jvm-opts
manually, without the leading slash, it seems to work.The text was updated successfully, but these errors were encountered: