Open skydread1 opened 3 years ago
In a file name dotnet_tasks at the root of a clojure project with the content:
dotnet_tasks
(ns dotnet-tasks) (defn build [] (binding [*compile-path* "build" *unchecked-math* *warn-on-reflection*] (compile my-proj.my-ns)))
to run in the terminal:
nos dotnet-tasks/build
fails because the underscore is not transformed into a dash for the file name.
Problem
In a file name
dotnet_tasks
at the root of a clojure project with the content:to run in the terminal:
fails because the underscore is not transformed into a dash for the file name.