Skip to content
This repository has been archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #20 from frajaona/master
Browse files Browse the repository at this point in the history
Fix FileHandler file path resolution
  • Loading branch information
nilsvu authored Feb 1, 2017
2 parents 4d48931 + e112d88 commit bfcd351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Evergreen/Handler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public class FileHandler: Handler, CustomStringConvertible {
guard fileURL.isFileURL else {
return nil
}
let path = fileURL.absoluteString
let path = fileURL.path
guard fileManager.createFile(atPath: path, contents: nil, attributes: nil) else {
return nil
}
Expand Down

0 comments on commit bfcd351

Please sign in to comment.