Skip to content

Commit

Permalink
#598: address feedback; add notes to CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
martinklepsch committed Jul 11, 2017
1 parent 0201d2e commit 979aacc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ ensure that message ends in a newline.
- With-cp does not consider source/resource paths
- Evaluation of boot script is now done via string concatenation and `load-string`, rather than `read-string` [#571][571]
- Improve robustness of built-in `notify` task [#551](https://github.com/boot-clj/boot/pull/551)
- When directories or files cannot be opened by boot, don't fail but log something in debug level [#598][598] & [#629][629]

##### Tasks

Expand All @@ -41,6 +42,8 @@ ensure that message ends in a newline.
[567]: https://github.com/boot-clj/boot/pull/567
[581]: https://github.com/boot-clj/boot/pull/581
[611]: https://github.com/boot-clj/boot/pull/611
[598]: https://github.com/boot-clj/boot/pull/598
[629]: https://github.com/boot-clj/boot/pull/629

## 2.7.1

Expand Down
3 changes: 1 addition & 2 deletions boot/pod/src/boot/tmpdir.clj
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@
(util/dbug* "Tmpdir: file not found: %s\n" (.toString p)))))))
(visitFileFailed [^Path path ^java.io.IOException e]
(with-let [_ fs/skip-subtree]
(let [p (str (.relativize root path))]
(util/dbug* "Tmpdir: failed to visit: %s\n" (.toString p))))))))
(util/dbug* "Tmpdir: failed to visit: %s\n" (str (.relativize root path))))))))

(defn- dir->tree!
[^File dir ^File blob]
Expand Down

0 comments on commit 979aacc

Please sign in to comment.