2 parents b14536c + fd31c7d commit 74ee0b3Copy full SHA for 74ee0b3
1 file changed
src/Hell.hs
@@ -1435,6 +1435,8 @@ supportedLits =
1435
lit' "Directory.renameFile" (\x y -> Dir.renameFile (Text.unpack x) (Text.unpack y)),
1436
lit' "Directory.copyFile" (\x y -> Dir.copyFile (Text.unpack x) (Text.unpack y)),
1437
lit' "Directory.removeFile" (\x -> Dir.removeFile (Text.unpack x)),
1438
+ lit' "Directory.doesFileExist" (\x -> Dir.doesFileExist (Text.unpack x)),
1439
+ lit' "Directory.doesDirectoryExist" (\x -> Dir.doesDirectoryExist (Text.unpack x)),
1440
-- Process
1441
lit' "Process.proc" $ \n xs -> proc (Text.unpack n) (map Text.unpack xs),
1442
lit' "Process.setEnv" $ Process.setEnv @() @() @() . map (bimap Text.unpack Text.unpack),
0 commit comments