We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
if-let below will always be true.
if-let
(mv [this from-path to-path] (if (= from-path to-path) this (if-let [f (assoc (get-in this [:tree from-path]) :path to-path)] (update-in this [:tree] #(-> % (assoc to-path f) (dissoc from-path))) (throw (Exception. (format "not in fileset (%s)" from-path))))))
The text was updated successfully, but these errors were encountered:
throw exception when mv source does not exist; fixes #325
d78c494
@martinklepsch good catch! :)
Sorry, something went wrong.
39015ae
6d89dc7
Merge pull request #327 from boot-clj/throw-mv-nonexisting
f174fb9
martinklepsch
Successfully merging a pull request may close this issue.
if-let
below will always be true.The text was updated successfully, but these errors were encountered: