Skip to content
Merged
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
3 changes: 1 addition & 2 deletions src/pkg.sml
Original file line number Diff line number Diff line change
Expand Up @@ -249,9 +249,8 @@ struct
| SOME pkgpath =>
let
val pdir = "lib" </> Manifest.pkgpathToString pkgpath
val pdir_exists = OS.FileSys.isDir pdir
in
if pdir_exists then ()
if System.doesDirExist pdir then ()
else raise Fail ("the directory " ^ pdir ^ " does not exist.")
end
end
Expand Down
Loading