nasser / nostrand

Clojure on Mono
67 stars 11 forks source link

nostrand cannot read functions in files with underscore #33

Open skydread1 opened 3 years ago

skydread1 commented 3 years ago

Problem

In a file name dotnet_tasks at the root of a clojure project with the content:

(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.