Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/me/raynes/fs.clj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
This is (naively) assumed to be a directory with the same name as the
user relative to the parent of the current value of user.home."
[path]
(let [path (str path)]
(let [path (str (io/as-file path))]
(if (.startsWith path "~")
(let [sep (.indexOf path File/separator)]
(if (neg? sep)
Expand Down
1 change: 1 addition & 0 deletions test/me/raynes/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
(fact "Expands path to current user."
(let [user (System/getProperty "user.home")]
(expand-home "~") => (file user)
(expand-home "~/foo") => (file user "foo")
(expand-home (str "~" File/separator "foo")) => (file user "foo")))

(fact "Expands to given user."
Expand Down