Skip to content

Commit

Permalink
troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrand committed Dec 4, 2024
1 parent eae0922 commit 8addedc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clj/src/cljd/build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
PATH (if os-is-windows "Path" "PATH")
^String path (or
(-> pb .environment (get PATH))
(throw (Exception. (str "No " PATH " variable found in the environment."))))
(throw (Exception. (str "No " PATH " variable found in the environment. Known variables: " (str/join ", " (keys (-> pb .environment))) ". Meanwhile System/getenv returns: " (System/getenv PATH) ))))
bins (if os-is-windows [(str bin ".exe") (str bin ".bat")] [bin])
full-bin
(or
Expand Down

0 comments on commit 8addedc

Please sign in to comment.