babashka / neil

A CLI to add common aliases and features to deps.edn-based projects
MIT License
360 stars 26 forks source link

Neil new behaviour different for windows #189

Closed muthuishere closed 10 months ago

muthuishere commented 10 months ago

neil new io.github.kit-clj/kit deemwar/helloweb is working fine in Linux based machines ,But in windows its not creating packages properly.

Upon investigation, we could see clj-new works well but deps-new is not working well.

I would like to understand,How the Neil new command will be transformed to deps-new

neil new io.github.kit-clj/kit deemwar/helloweb

for the above command,what will be the equivalent deps-new transformation??

https://github.com/kit-clj/kit/issues/113#issuecomment-1708708556

borkdude commented 10 months ago

The code is here: https://github.com/babashka/neil/blob/main/src/babashka/neil/new.clj You can perhaps add some debugging in that file and try it out. But perhaps it's better to try deps-new directly to see if there's an issue with deps-new itself.

muthuishere commented 10 months ago

Thanks

borkdude commented 10 months ago

Did you manage to figure it out?

muthuishere commented 10 months ago

Yes the issue is in the template,. Added a PR for them.

https://github.com/kit-clj/kit/pull/114