Skip to content
New issue

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

Change 'expand-home' to support Unix style paths on windows. #73

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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